
function popup_window(varpicture, vartext )
 {
	if (vartext == null) {
		vartext = "" ;
	}
	img0 = document.images[varpicture].name ;
	img1 = document.images[varpicture].src ;
	imgX = new Image();
	imgX.src = document.images[varpicture].src ;
	img2 = imgX.width + 20 + 25 ;
	img3 = imgX.height + 34 + 30;

	vbx = window.open("", varpicture ,'width=' + img2 +  ',height=' + img3 + ', resizable=0,menubar=0,scrollbars=0,toolbar=0');
	vbx.focus();
	vbx.document.write("<html><head><title></title>");
	vbx.document.write("<link rel='styleSheet' href='/images/stylesheet_ingre_tcm95-61743.css' type='text/css'></head>"); 
	vbx.document.write("<body><table cellspacing='0' cellpadding='0'><tr><td valign='top'><img src='" + img1 +  "' hspace='3' vspace='3' border='1' ></td></tr><tr><td  class='datum' align='center'>");
	vbx.document.write(vartext);
	vbx.document.write("</td></tr></table></body></html>");
	vbx.document.close() ;
 }

function pop_legend(txt_popup, title_popup, img_popup)
 {
	vbx = window.open("", "pop_legend", "resizable=0,menubar=0,scrollbars=0,toolbar=0,width=450,height=300,left=300,top=300");
	vbx.focus();
	vbx.document.write("<title>" + title_popup + "</title>");
	vbx.document.write("<link rel='StyleSheet' href='/images/stylesheet_ingre_tcm95-61743.css' type='text/css'>"); 
	vbx.document.write("<table><tr><td class='body' valign='top'><img src='" + img_popup +  "' align='left' hspace='3' vspace='3' border='1' ></td><td>");
	vbx.document.write("<b>" + title_popup + "</b><br>");
	vbx.document.writeln(txt_popup);
	vbx.document.write("</td></tr></table>");
	vbx.document.bgColor="#FFFFFF";
	vbx.document.close() ;
  }   	

function popup_attachment(varpicture, varalt)
 {
	if (varalt == null) {
		varalt = "" ;
	}
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	imgX = new Image();
	imgX.src = varpicture;
	img2 = imgX.width + 44;
	img3 = imgX.height + 44;
	w = (w - img2)/2;
	h = (h - img3)/2;
	vbx = window.open('', '' ,'width=' + img2 +  ',height=' + img3 + ',resizable=1,menubar=0,scrollbars=0,toolbar=0,top=' + h + ',left=' + w + '');
	vbx.focus();
	vbx.document.write("<html><head><title>" + varalt + "</title>");
	vbx.document.write("</head>"); 
	vbx.document.write("<body marginheight='0' marginwidth='0' topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0'><img src='" + varpicture +  "' hspace='21' vspace='21' border='1' alt='" + varalt + "'>");
	vbx.document.write("</body></html>");
	vbx.document.close() ;
	return false;
 }

function checksubmit(submitform){
	submit(submitform);
	FreezeScreen(' '); 
} 

function FreezeScreen(msg) {
	scroll(0,0);
	var outerPane = document.getElementById('FreezePane');
	var innerPane = document.getElementById('InnerFreezePane');
	if (outerPane) outerPane.className = 'FreezePaneOn';
	if (innerPane) innerPane.innerHTML = msg;
}
