function openPage (which) {
	newWindow = window.open(which,"New","scrollbars=yes,resizable=yes,width=450,height=450");
}
// Open Pop-Up Window
function openWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function bookmarkPage(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}