function globalError()
{
return true;
}
function wOpen (img_url,win_title,win_width,win_height)
{
var img_url,win_title,win_width,win_height;
var uri="";
var win_awidth=+win_width+0;
var win_aheight=+win_height+70;
var win=window.open("","","left=50px,top=50px,width="+win_awidth+",height="+win_aheight);
win.document.open('text/html');
win.document.write('<html><head><meta http-equiv="imagetoolbar" content="no" /><title>'+win_title+'</title><link rel="stylesheet" href="css/tmp-win.css" type="text/css"/></head><body>');
win.document.write('<a href="javascript:window.close();" ><img style="border-bottom:3px solid white"src="'+img_url+'" alt="'+win_title+'"/></a>');
win.document.write('<div style="float:right;margin-right:20px;" ><h5 ><a href="javascript:window.close();" >[ Fenster schliessen ]</a></h5></div>');
win.document.write('</body></html>');
win.document.close();
}