function newWindow(source,name,style) {
 window.open(source,name,style);
}

function imprint() {
 window.open("imprint.php","IMPRINT","width=450,height=600,scrollbars=yes,resizeable=no");
}


function imagePopUp(image,width,height) {
 vspace=20;
 hspace=20;
 popUp = window.open("html/popUp.php?img="+image+"&width="+width+"&height="+height,"POPUP","width="+(width+hspace)+",height="+(height+vspace)+",scrollbars=no,resizeable=no");
 popUp.focus();
 
}
