<!--

function popupwindow(url,width,height,left,top)
{
	window.open(url,'','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)
{ var w,h;
	(width) ? w='width='+width+',' : w='';
	(height) ? h='height='+height+',' : h='';
	imagewindow = window.open(filepath,'windowA','toolbar='+toolbar+',location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,'+w+h+'left='+left+',top='+top+',alwaysRaised=1');
	imagewindow.focus();
}

//-->