
function btnSearchClick()
{
	var googletext = document.getElementById("googletext");
	var post = "googletext=" + googletext.value ;
	window.location.href = "/google/searchgoogle.asp?" + post ;
	window.name="SearchWindow";
}

function CDPage(CatalogueID)
{
    var f = document.googleform;
    var cdPage = window.open("" , "cdPage","width=1000,height=800,left=50,top=50,screenX=0,screenY=50,resizable=yes,toolbar=yes,scrollbars=yes") ;
    //f.cid.value = CatalogueID;
	f.target = 'cdPage';
    f.submit();
    cdPage.focus();
    window.name="CDPageWindow";
}

function TextKeyDown(txtKeyCode)
{
    
    if( txtKeyCode == 13)
    {
        btnSearchClick();
    }
    return true;

}