﻿function openwindow(datei,breite,hoehe)
	{
	fenster = open(datei,"NeuesFenster","width="+breite+",height="+hoehe+",resizable=no,menubar=no,status=no,locationbar=no,dependent=yes,scrollbars=no");
	fenster.focus()
	}


function resizeImage(e, name) {
    newX = e.x;
    newY = e.y;
    eval("document." + name + ".width=newX");
    eval("document." + name + ".height=newY");
}


if(document.all) {
    document.write('<img class="pic" id="pic">');
    document.write('<span class="text" id="text"></span>');
    document.all["text"].innerHTML = "<form action='javascript:resizeImage()'><b>Zoom: <input id='percent' class='percent' type='text' value='100' maxlength='5' size='3'> %</b><p></form>";
    document.all["pic"].src = foto.src;
}

