﻿function popUp(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=650,height=500,left = 400,top = 100');");
}

function popUpHW(URL, height, width) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width="+width+",height="+height+",left = 400,top = 100');");
}

function popUpFull(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=1200,height=600,left = 20,top = 20');");
}

function addToFavorites()
{
	var title = document.title;
	var url = location.href;
	
	if (window.sidebar) 
	{ 
		alert('Use Ctrl+D to bookmark this page');
	} 
	else if (window.external)
	{
		window.external.AddFavorite(url,title);
	}
	else
	{ 
		alert("Sorry! Your browser doesn't support this function."); 
	}
}