var
  online_popup_w=0;  

function popup(viewer,page,scrollbars,resizable,width,height)
{
	online_popup_w = window.open(page,viewer,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable='+resizable+',copyhistory=0,width='+width+',height='+height+',left=200,top=100');
	online_popup_w.focus();
	return false;
}


function closepopup()
{
	if (online_popup_w!=0)
	{
		online_popup_w.close();
	}
	online_popup_w=0;
	return false;
}

window.onfocus=function() {
closepopup();
};

