function gosearch()
{
	document.location = "http://www.glamourhunt.com/search.asp?search=" + window.txtsearch.value
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/1.07 : 0;
TopPosition = (screen.height) ? (screen.height-h)/5 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
function chkemail()
{
	if(frmnews.txtnewsletter.value == "")
	{
		alert("Key-in your Email Id");
		return false;
	}
	else
	{
		var a = frmnews.txtnewsletter.value.indexOf("@")
		if (a == -1)
		{
		alert("Key-in a valid Email Id");
		return false;
		}
	}
}
