// JavaScript Document

function cleasearch(){
	with(document.formsearch) {
		txtsearch.value="";
		txtsearc.focus();
	}
}

function appsearch(){
	with(document.formsearch) {
		txtsearch.value="Search...";
	}
}

function cek()
	{
		with (document.formcontact){
			if(first.value==""){
				alert('Please insert your first name');
				first.focus();
				return false;
			
			}
			return true;						
		}
	}

