var newwindow;
var wheight = 0, wwidth = 0;

function openwin(url, iwidth, iheight) {
	
	newwindow=window.open('','htmlname','width=' + iwidth +',height=' +iheight + ',resizable=0,status=0,toolbar=0,location=0,menubar=0,scrollbars=yes, ');
	
	newwindow.document.clear();
	newwindow.focus();
	newwindow.document.writeln('<html style=\"margin:0px; padding=0px;\"> <head> <title><\/title> <\/head> <body style=\"margin: 0px; padding: 0px;\"> <center>');
	newwindow.document.writeln('<img src=' + url + '>');
	newwindow.document.writeln('<\/center> <\/body> <\/html>');
	newwindow.document.close();
	newwindow.focus();
}

