//  file: popup.js
//  description: öffnet ein Popup-Fenster zur anzeige von Bildern
//  version: 1.2 - 01.12.2004
//  (C) OMNIWORX GbR


var win = null;

function openwin( imageId ) {
	win = window.open( "pop.php?imageId="+ imageId, "fenster1", "width=650, height=550, personalbar=no, status=no, menubar=no, resizable=yes, location=no, scrollbars=no, dependent=no, screenX=100, screenY=100" );
	win.focus();
}

function flashwin ( file ) {
	win = window.open( "video.php?file="+ file, "fenster1", "width=410 height=380, personalbar=no, status=no, menubar=no, resizable=yes, location=no, scrollbars=no, dependent=no, screenX=100, screenY=100" );
	win.focus();
}