<!--

function popupwindow(url,width,height,left,top)
{
	window.open(url,'popupwindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top+'');
}

function popupimage(filepath,width,height,left,top,toolbar)
{
	imagewindow = window.open(filepath,'windowA','toolbar='+toolbar+',location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width='+width+',height='+height+',left='+left+',top='+top+',alwaysRaised=1');
	imagewindow.focus();
}

//-->