 function popup(url,myWidth,myHeight)

{

mySize = "width=" + myWidth + ",height=" + myHeight + ",scrollbars=no,status=no,location=no,toolbar=no,menubar=no,resizable=no,left=8,top=16";

myWindow = window.open("","image",mySize);

myWindow.document.open();

myWindow.document.write('<html><head>');

myWindow.document.write('<title>' , url , '<','/title>');

myWindow.document.write('<','/head>');

myWindow.document.write('<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><img src=\"' , url , '\"><' , '/body><' , '/html>');

myWindow.document.close();

}

function openNewWin2(url, name, w, h) {
	var newWin;
	var options = "toolbar=no,menubar=yes,status=yes,scrollbars=yes,resizable=yes";
	newWin = window.open(url, name,"width=" + w + ",height=" + h + options);
	newWin.focus();
}

