// JavaScript Document
function fnFocusIn(objTxt)
{
	if(objTxt.value=="SEARCH")
		objTxt.value = "";
}
function fnFocusOut(objTxt)
{
	if(objTxt.value=="")
		objTxt.value = "SEARCH";
}
function fncheck(){
	if(document.form1.search.value == "SEARCH"){
		alert("please enter search keyword");
		document.form1.search.focus();
		return false;
	}
}
function OpenLightBox() {
	 var t = null;
	 var a = 'popup.php?width=470&height=470';
	 var g = false;
	 tb_show(t,a,g);
	 return false;
}
function fncheck1(){
	if(document.searchfrm.search.value == "SEARCH"){
		alert("please enter search keyword");
		document.searchfrm.search.focus();
		return false;
	}
}
function fnenablebtn() {
	if(document.form1.terms.checked == false) 
		document.form1.Submit.disabled=true;
	else
		document.form1.Submit.disabled=false;
}