function popup_window(img, title, x, y, classcss) {
newwindow=window.open('','imagepopup','left='+((screen.width-x)/2)+',top='+((screen.height-y)/2)+',height='+y+',width='+x+',');
var tmp = newwindow.document;
tmp.write('<html><head><title>'+title+'</title><link rel="stylesheet" href="/etc.css"></head><body class="'+classcss+'" leftmargin="0" topmargin="0"><a href="javascript:self.close()"><img src="'+img+'" width="'+x+'" height="'+y+'" border="0"></a></body></html>');
tmp.close();
if (window.focus) {newwindow.focus()}
return false;
}

function popup_window(img, title, x, y, classcss) {
newwindow=window.open('','imagepopup','left='+((screen.width-x)/2)+',top='+((screen.height-y)/2)+',height='+y+',width='+x+',');
var tmp = newwindow.document;
tmp.write('<html><head><title>'+title+'</title><link rel="stylesheet" href="/rud.css"></head><body class="'+classcss+'" leftmargin="0" topmargin="0"><a href="javascript:self.close()"><img src="'+img+'" width="'+x+'" height="'+y+'" border="0"></a></body></html>');
tmp.close();
if (window.focus) {newwindow.focus()}
return false;
}

function popup_window_url(url, x, y) {
newwindow=window.open(url,'','left='+((screen.width-x)/2)+',top='+((screen.height-y)/2)+',height='+y+',width='+x+',resizable=1,scrollbars=1');
if (window.focus) {newwindow.focus()}
return false;
}


