
function openPop(url) 
{ 		
	openPopup(url,'help', 'toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=800px,height=600px');		
}

function openPopup(url, title, options)
{
	var openWindow = window.open(url, title, options);
	
	openWindow.focus();
}

function help(URL) 
{
	var day = new Date();
	var id = day.getTime();
	openPopup(URL, id, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=500');
}

