// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
win=window.open(theURL,winName,features);
win.focus();
}

function popupCenter(theURL,winName,width,height) {
	var x = screen.width / 2;
	x = x - width / 2;
	var options = "menubar=no,toolbar=no,scrollbars=yes,resizable=yes,left=" + x + ",top=0" + 
",width=" + width + ",height=" + height;
window.open(theURL,winName,options);
}

function FormSubmit(objForm) { 
	objForm.submit(); 
}