///////////////////////////////////////////////////////////////
//
// creates picture preview with parameter "local file string given by form
//
////////////////////////////////
function picPopup(pic,tit)
 {

		myWindow = window.open("about:blank","xx",'location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no,width=1,height=1');

		myWindow.document.open("text/html");
		myWindow.document.writeln('<html><head><title>'+tit+'<\/title><\/head><body bgcolor=\"#F7B608\" onLoad=\"window.resizeTo(eval(document.images[0].width+40),eval(document.images[0].height+100))\">');
		
		myWindow.document.writeln('<center><img src=\" ' + pic+ ' \" border=\"0\"><br>');
		myWindow.document.writeln('<\/body><\/html>');
		myWindow.document.close();
		
 }


