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

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

		myWindow.document.open("text/html");
		
		myWindow.document.writeln('<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"');
    myWindow.document.writeln(' \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">');

    myWindow.document.writeln('<html>');
    myWindow.document.writeln('<head>');
    myWindow.document.writeln('	<title>'+tit+'<\/title>');
    myWindow.document.writeln('<\/head>');
    myWindow.document.writeln('<body onload=\"window.resizeTo(eval(document.images[0].width+60),eval(document.images[0].height+80))\">');
		myWindow.document.writeln('	<img src=\" ' + pic+ ' \" alt=\"Hekas Uhren - Produktbeispiel'+tit+'\" />');
    myWindow.document.writeln('<\/body>');
    myWindow.document.writeln('<\/html>');


		myWindow.document.close();

 }

