function windowOpen(thisFile,wIdth,hEight)
	{ 
    if (wIdth < 100)
    {
     	 wIdth = 780;
    }
    if (hEight < 100)
    {
		   hEight = 560;
    }

    window.open (thisFile, 'newwindow', config='height=' + hEight + ', width=' + wIdth + ', toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no')

    return 0;
	}
	
