	function SaveCompanyProfile()
	{
		//Get all object to get the value
		var hCompanyProfile = document.getElementById("hCompanyProfile");
		var txtLinkedIn = document.getElementById("txtLinkedIn");
		var txtSpecial = document.getElementById("txtSpecial");
		var txtYouTube = document.getElementById("txtYouTube");
		var txtFacebook = document.getElementById("txtFacebook");
		var txtTwitter = document.getElementById("txtTwitter");
		var txtMySpace = document.getElementById("txtMySpace");
		var txtWordPress = document.getElementById("txtWordPress");
		var txtBlogger = document.getElementById("txtBlogger");
		var txtTypePad = document.getElementById("txtTypePad");
		var txtMoveableType = document.getElementById("txtMoveableType");
		var txtOther = document.getElementById("txtOther");
		
		
		//~ hCompanyProfile.value = txtCompanyDescription.value + "#" + txtSpecial.value + "#";
		//hCompanyProfile.value = txtLinkedIn.value + "#" + txtSpecial.value + "#";
		
		hCompanyProfile.value =txtLinkedIn.value + "#" + txtSpecial.value + "#" + txtYouTube.value + "#" + txtFacebook.value + "#" + txtTwitter.value + "#" + txtMySpace.value + "#" + txtWordPress.value + "#" + txtBlogger.value + "#" + txtTypePad.value + "#" + txtMoveableType.value + "#" + txtOther.value ;	
			
		//~ alert(hCompanyProfile.value );
	}
	function ShowCompanyProfile()
	{
		var hCompanyProfile = document.getElementById("hCompanyProfile");
		var sCompanyProfile = document.getElementById("scompanyprofile");
		//Check to The Last Control if null it's mean the all control not yet Rendered otherwise the control is rendered and bind data to that control
		//Content Not yet Rendered
		if(sCompanyProfile == null)
		{
			setTimeout("ShowCompanyProfile();", 300);
		}
		//Content Rendered
		else
		{
			//For Tiny MCE
			//~ SkinO2k7();
			
			if(hCompanyProfile.value != "" && hCompanyProfile.value != null)
			{
				//Split All Value
				var AllValue = hCompanyProfile.value.split("#");
				//Get all Object
				var txtLinkedIn = document.getElementById("txtLinkedIn");
		var txtSpecial = document.getElementById("txtSpecial");
		var txtYouTube = document.getElementById("txtYouTube");
		var txtFacebook = document.getElementById("txtFacebook");
		var txtTwitter = document.getElementById("txtTwitter");
		var txtMySpace = document.getElementById("txtMySpace");
		var txtWordPress = document.getElementById("txtWordPress");
		var txtBlogger = document.getElementById("txtBlogger");
		var txtTypePad = document.getElementById("txtTypePad");
		var txtMoveableType = document.getElementById("txtMoveableType");
		var txtOther = document.getElementById("txtOther");
				//Render value
				txtLinkedIn.value = DecodeTag(AllValue[0]);
				txtSpecial.value = AllValue[1];
				txtYouTube.value = AllValue[2];
				txtFacebook.value = AllValue[3];
				txtTwitter.value = AllValue[4];
				txtMySpace.value = AllValue[5];
				txtWordPress.value = AllValue[6];
				txtBlogger.value = AllValue[7];
				txtTypePad.value = AllValue[8];
				txtMoveableType.value = AllValue[9];
				txtOther.value = AllValue[10];
				
			}
		}
	}
	
	function CompanyProfileValidation()
	{
		//Statue Check
		var vcount = false;
		var vSpecial = false;
		var vProfileValidation = false;
		//~ var vSpecial = false;
		var counttotal =0;
		//Get All object to be check the value
		var sIndicates = document.getElementById("sIndicates");
		var txtSpecial = document.getElementById("txtSpecial");
		var txtLinkedIn = document.getElementById("txtLinkedIn");
		var txtYouTube = document.getElementById("txtYouTube");
		var txtFacebook = document.getElementById("txtFacebook");
		var txtTwitter = document.getElementById("txtTwitter");
		var txtMySpace = document.getElementById("txtMySpace");
		var txtWordPress = document.getElementById("txtWordPress");
		var txtBlogger = document.getElementById("txtBlogger");
		var txtTypePad = document.getElementById("txtTypePad");
		var txtMoveableType = document.getElementById("txtMoveableType");
		var txtOther = document.getElementById("txtOther");
		var vtxtcount = document.getElementById("vtxtcount");
		//~ var txtCompanyDescription = tinyMCE.get('txtCompanyDescription').getContent();
		//~ var txtSpecial = document.getElementById("txtSpecial");
		
		//get object validation star
		var vtxtSpecial = document.getElementById("vtxtSpecial");
		//~ var vtxtSpecial = document.getElementById("vtxtSpecial");
		
		//Check Company Description Value
		
		
		//~ //Check Special value
		 if(txtSpecial.value != null && txtSpecial.value != "")
		 {
			 vtxtSpecial.style.display = "none";
			 sIndicates.style.display = "";
			 vSpecial = true;
		 }
		 else
		 {
			vtxtSpecial.style.display = "";
			 vSpecial = false;
		 }
		 
		 if(txtLinkedIn.value != null && txtLinkedIn.value != "")
		 {
			counttotal=counttotal +1;
		 }
		if(txtYouTube.value != null && txtYouTube.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtFacebook.value != null && txtFacebook.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtTwitter.value != null && txtTwitter.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtMySpace.value != null && txtMySpace.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtWordPress.value != null && txtWordPress.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtBlogger.value != null && txtBlogger.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtTypePad.value != null && txtTypePad.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtMoveableType.value != null && txtMoveableType.value != "")
		 {
			counttotal=counttotal +1;
		 }
		 if(txtOther.value != null && txtOther.value != "")
		 {
			counttotal=counttotal +1;
		 }

		 if(counttotal <=5)
		{
			// alert("company profile.js line 208 chota" + counttotal);
			 vtxtSpecial.style.display = "none";
			 sIndicates.style.display = "";
			 vSpecial = true;
		 
		 }else{
			 // alert("company profile.js line 211 bada" + counttotal);
			  vtxtcount.style.display = "";
			  vSpecial = false;
		 
		 }

         
		return vSpecial;
	}