function open_popup(url)
{
window.open(url, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=550,height=500' );
}
function checkscreen ()
{
var p;
p = "("+screen.width+" x "+screen.height+") pixels, "+	screen.pixelDepth +" bit depth, "+	screen.colorDepth +" bit palette depth.";
document.cookie = "screen= "   + p +"";
}


function open_popup2(url)
{
window.open(url, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=640,height=800' );
}
function checkscreen ()
{
var p;
p = "("+screen.width+" x "+screen.height+") pixels, "+	screen.pixelDepth +" bit depth, "+	screen.colorDepth +" bit palette depth.";
document.cookie = "screen= "   + p +"";
}

function addToFavorites(urlAddress,pageName) 

{ if (window.external) { window.external.AddFavorite(urlAddress,pageName) 
}
else { alert("Sorry! Your browser doesn't support this function."); 
} 
}
