function x(site)
{
    window.open("http://"+site);
}

function see(site){
    window.open("http://"+site);
}

function sahp(url)
{
        if (navigator.userAgent.indexOf("MSIE")!=-1) 
		{
	     	document.body.style.behavior='url(#default#homepage)';
			document.body.setHomePage(url);
		} 
		else 
		{
			alert('Sorry, not supported in this browser,  change this setting manually');
		}
	return false;
}
										
