function popwin(url)
{
	newwindow=window.open(url,'name','height=600,width=535,status=yes,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
} 

function SubmitSearch()
{
    var txtsearch = document.getElementById("textfield");
    location.href = "search.aspx?search=" + txtsearch.value;
    return false; 
}