<!--

	function validation(){
		
		var tmp="";

		if( document.getElementById("txt_Name").value =="" ){
			tmp += '\"Name\"\n';			
		}
		
		if( document.getElementById("txt_Email").value =="" ){
			tmp += '\"Email\"\n';
		}
		if( document.getElementById("txt_Subject").value =="" ){
			tmp += '\"Subject\"\n';
		}
		if( document.getElementById("txt_Phone").value =="" ){
			tmp += '\"Phone\"\n';
		}
		if( document.getElementById("txt_Company").value =="" ){
			tmp += '\"Company\"\n';
		}


		if( document.getElementById("txtView_Email").value =="" ){
			tmp += '\"Body\"\n';
		}


		if(tmp!=""){
			if(confirm("Following field(s) is(are) EMPTY!!! \n\n"+tmp+"\n\nWanna Continue?")==false)
				return false;
			else submitComponentForm('send', '__GUIKit__.EvClick','');
				
		}
		else{
			submitComponentForm('send', '__GUIKit__.EvClick','');
			//return true;
		}

		
	}

-->