function WOW(fname,height,width) 

{ 
contents= "<html><body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 bgcolor=15384E>";
contents+= "<table width=100% height=100% border=0 cellspacing=0 cellpadding=0><tr align=center><td align=middle><img src="+fname+"></td></tr></table></body></html>" ; 
wattr="menubar=0, toolbar=0, scrollbars=1, location=0, directories=0, fullscreen=0, height="+height+" width="+width;
Win1=window.open('','',wattr);
Win1.document.writeln(contents); 

} 

function umlyaut(formname,field) 
{	

	var strg=eval("document."+formname+"."+field+".value");
	strg=strg.replace(/õ/g,"&otilde;");
	strg=strg.replace(/ü/g,"&uuml;");
	strg=strg.replace(/ä/g,"&auml;");
	strg=strg.replace(/ö/g,"&ouml;");
	strg=strg.replace(/Ü/g,"&Uuml;");
	strg=strg.replace(/Õ/g,"&Otilde;");
	strg=strg.replace(/Ö/g,"&Ouml;");
	strg=strg.replace(/Ä/g,"&Auml;");
	document.forms[formname].elements[field].value=strg;
} 

function img_explore(f_name,s_name,i_name)
{ 
var URL = document.forms[f_name].elements[s_name].options
  [document.forms[f_name].elements[s_name].selectedIndex].value; 
document.images[i_name].src = "img/pictures/thmb/"+URL+"_tmb.jpg"; 
} 
