//--- start open window for gallery -------------------------------------
var newWin = null;
function NewWindow(param){
        // Create and set window option variables.
        var windowBars = 'directories=no,location=no,menubar=no,status=no,toobar=no';
        var windowOptions = 'scrollbars=no,width=400,height=300,resizable=yes,left=200,top=100';
        var windowFeatures = windowBars + ',' + windowOptions;
        var childWindow = '../lib/galerie.php?img='+param;

        // Open the child window
    	newWin = window.open(childWindow, 'contactus', windowFeatures);
	    window.newWin.focus();
}
//--- end open window ----------------------------------------------------
