function Window(File_Parameter)
{
	/*** Settings ***/
    var URL = "window.php?file=" + File_Parameter;
    var Name = "Window";
    var WindowSettings = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1";
    var Width = 750;
    var Height = 550;
	
	/*** Create PopUp ***/
	var pwindow = window.open(URL, 'Name', WindowSettings + ',width=' + Width + ',height=' + Height);
	
	/*** Return ***/
	if(pwindow) {
		return false;
	}
	else {
		return true;
	}
}
