function openWindow(pagetoload, winname, width, height, center, scrollbars)
{
	args = "width=" + width + ","
	+ "height=" + height + ","
	+ "location=0,"
	+ "menubar=0,"
	+ "resizable=0,"
	+ "scrollbars=" + scrollbars + ","
	+ "status=0,"
	+ "titlebar=0,"
	+ "toolbar=0,"
	+ "hotkeys=0,"
	
	window.open(pagetoload,winname,args);
}