var newwindow;
function aCunningPopup(url)
{
	newwindow=window.open(url,'name','height=600,width=660,left=100,top=100,resizable=false,scrollbars=no,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}

function PopupHelp(url,h,w,l,t)
{
	newwindow=window.open(url,'name','height='+h+',width='+w+',left='+l+',top='+t+',resizable=yes,scrollbars=no,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}

