//
// Common JavaScript code
// t.b.v. Omnia Website
// copyright 2003 M. van Laatum / MIEZ.nl
//

//--------------------------------------------------------------------------------
// de Popup() functie opent een popup venster. 
function Popup(FileName,PicW,PicH)
{	var WindowDef = "toolbar=no,scrollbars=yes,resizable=yes,width=" + PicW + ",height=" + PicH;
	var dummy = window.open(FileName,"Popup",WindowDef);
	return;
}