
function pic(url, name, height, width, scrollbars)
{

    	var popwin;
	"toolbar=yes,status=yes,location=yes,menubar=yes,resizable=no,scrollbars=yes";
	
	    var opts = 
        "toolbar=yes,status=yes,location=yes,menubar=yes,resizable=no,scrollbars=yes";

                popwin = window.open("", name,'width=520, height=413, left=270, top=210,resizable=no', opts );
		popwin.focus();
                              popwin.document.write('<body bgcolor="#F1D915">');
		
			popwin.document.write('<img src=');
			popwin.document.write(url);
			popwin.document.write('>');
	
}

