// JavaScript Document
function popUp(title, url, width, height)  {
	newwindow2=window.open('',"windowname","toolbar=no,resizable=yes,scrollbars=no,width="+width+",height="+height+",left=50,top=50");
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>');
	tmp.write(title);
	tmp.write('</title></head><body style="margin:0px; padding:0px;"><img src="');
	tmp.write(url);
	tmp.write('" />');
	tmp.write('</body></html>');
	tmp.close();
	return false;
}
