///////////////////////////////////////////////////////////////////////////////
// Opens a new window
function OpenForm() {
	var link = arguments[0];
	var name = arguments[1];
	var w = arguments[2]? arguments[2] : 640;
	var h = arguments[3]? arguments[3] : 480;
	var resizable = Boolean(arguments[4]);
	var scrollbars = Boolean(arguments[5]);
	var exec = arguments[6];
	if (!link)
		return;

	var size = "";	// w = 640; h = 480;
	if (w && h)
		size = "width="+ w +","+ "height="+ h +",";
	var resize = (resizable)? "yes" : "no";
	var scroll = (scrollbars)? "yes" : "no";
	var y = (screen.height <= 600)? 0 : (screen.height-h)/2;
	var x = (screen.width	 <= 800)? 0 : (screen.width-w)/2;
	var status = "no";

	wChild = window.open(
		link,
		name,
		"top="+ y +","+
		"left="+ x +","+
		size +
		"location=no,"+
		"directories=no,"+
		"status="+ status +","+
		"menubar=no,"+
		"toolbar=no,"+
		"resizable="+ resize +","+
		"scrollbars="+ scroll,
		true
	);
	
	wChild.focus();
	//return wChild;
};
