// JavaScript Document
function make_hp()
{
    if( document.all )
    {
       document.body.style.behavior='url(#default#homepage)';
	   document.body.setHomePage('http://www.MySearchNet.ca');
    }
    else
    {
  	  alert("Can't automatically set your homepage. Please do so manually!");
    }
}

function openWindow( sURL )
{
	theWindow = window.open( sURL, '_blank', 'width=600,height=500,left=100,top=50,toolbar=no,status=no,scrollbars=no,menubar=no,location=no' );
	theWindow.focus();
	return false;
}
