function openWindowGen(width, height, page, windowName) {
	
	windowprops = "height=" + height + ",width=" + width + ", left= 0, top= 0,"
+ "scrollbars=yes, menubars=no, toolbars=no, resizable=yes";

	window.open(page, windowName, windowprops);
}
