function popup_acte(strSubFolder, strFileName)
{
//(c) DataMagic 2004.
// Show Acte SCAN in a popup.
// Scaling (actual width of image) is set in Web.config("ACTEBREEDTE")

var stroptions, strURL
var lngtop, lngleft, width

	width=750;
	height=600;
	strURL = "acteshow.aspx?f=" + strFileName + "&s=" + strSubFolder;
	lngtop = (screen.height-height)/2;
	lngleft = (screen.width-width)/2;
	stroptions= "width=" + width + ",height=" + height + ",top="+lngtop + ",left=" +lngleft + ",scrollbars=yes";
	whandle = window.open(strURL,"PicWindow",stroptions);
	whandle.focus();
}	

function popup_actedetails(id)
{
var stroptions, strURL
var lngtop, lngleft

	strURL = "actedetail.aspx?ACT_ID=" + id;
	lngtop = (screen.height-500)/2;
	lngleft = (screen.width-500)/2;
	stroptions= "width=500,height=500,top="+lngtop + ",left=" +lngleft + ",scrollbars=yes";
	whandle = window.open(strURL,"ActeWindow",stroptions);
	whandle.focus();
}	
