﻿function GoSearchCopernic(textToSearch, strLang) {
    if (strLang == "fr")
	    window.location.href = "http://www.dreamroofs.com/fr/copernic/default.asp?query=@syslanguage%3Dfrench+" + escape(textToSearch);
	else
	    window.location.href = "http://www.dreamroofs.com/en/copernic/default.asp?query=@syslanguage%3Denglish+" + escape(textToSearch);
}

function emptyField(Control) 
{
	Control.value = '';
}	

function searchcheckKey()
{
	if (window.event.keyCode==13)
	{
		GoSearchCopernic(document.forms[0].searchBox.value);
		return false;
	}
	
	return true;
}

