/*Center Browser window */
function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

/*Set Homepage*/
var br
if (document.all)
{ br="IE";}
else
{ br="N";}

    function homepage()
{
if (br=="N")
{
    alert('Your browser does not have this feature.\nClick on Edit => Preferences to change your Homepage, after clicking OK.\nClick on Navigation => Set Homepage');
}
}

/* Bookmark Site */
function bookmark()
{
	if (br=="IE")
	{
	window.external.AddFavorite(document.URL,document.title)
	}
	else
	{
	alert('Your browser does not have this feature.\nPress CTRL+D to Bookmark this page in Netscape or Mozilla.\nClick Bookmarks => Add Page Here in Opera');
	}
}

/* Popup Window Script © CJ Website Design */
function popUp(url){
	window.open(url,"pop","width=550,height=350,toolbars=0,scrollbars=0")
}
