/*****************************************
JavaScript For siteside.aspx page
*****************************************/
function gosearch(){
	if (document.form1.txtsearch.value == ""){
		alert("Please Enter Search Value");
		return;}
	var surl = "sitemainsearch.aspx?s=" + document.form1.txtsearch.value;
	parent.mainwin.document.location.href = surl;
}
function gohome(){
	parent.mainwin.document.location.href = "sitemain.aspx";
}
function gocat(scatc,ssubcatc){
	var surl = "sitemaincategory.aspx?c=" + scatc + "&s=" + ssubcatc;
	parent.mainwin.document.location.href = surl;
}
