var image;
var imagename;
var width;
var height;
function popupscreen(image, imagename, width, height){
ImageWindow=window.open("", 'unqscreen', config='height='+(height+20)+', width='+(width+20)+', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
ImageWindow.document.write('<html><head><title>'+imagename+'</title></head>');
ImageWindow.document.write('<body leftmargin=10 topmargin=10 bgcolor="#200105" onLoad="window.focus()"><img src="'+image+'" alt="" border="0">');
ImageWindow.document.write('</body></html>');
ImageWindow.document.close();
}
