function openTerms()
{
	newwin = window.open("terms.htm","terms","width=400,height=400,scrollbars=yes");
}

function openPrivacy()
{
	newwin = window.open("privacy.htm","privacy","width=400,height=400,scrollbars=yes");
}

function openContactUs()
{
	newwin = window.open("contactus.htm","contactus","width=400,height=400,scrollbars=yes");
}



function search()
{	
	window.location = "Search.aspx?keyword=" + document.all["txtSearch"].value + "&sort=" + document.all["ddlSearch"].options[document.all["ddlSearch"].selectedIndex].value;
}

function searchOld()
{
	window.location = "Search.aspx?keyword=" + document.getElementById["txtSearch"].value + "&sort=" + document.getElementById["ddlSearch"].options[document.getElementById["ddlSearch"].selectedIndex].value;
}


