// JavaScript Document
function mypop(loc) {
	mywin = window.open(loc,'popup','status=0,menubar=0,scrollbars=1,width=650,height=350,toolbar=0,resizable=0');
}

function contshop() {
	opener.location.href='/development/order_courses.cfm';
	window.close();
}

/* brought over from old design */

function ctlBtn() {
	if (event.CtrlKey){
		alert("no control key");
	}
}

function popupWindow(popwin) {
	popWindow = window.open(popwin, 'viewWin','menubar=no,statusbar=no,scrollbars=yes,resizable=no,width=550,height=525,top=10,left=100');
	popWindow.window.focus();
}

function popupWindow(descwin) {
	popWindow = window.open(descwin, 'DescWin','menubar=no,statusbar=no,scrollbars=yes,resizable=no,width=550,height=325,top=10,left=100');
	popWindow.window.focus();
}

function CheckRequiredFields(form) {
	if (form.username.value == "") { 
		alert('Please enter user name');
		return false;
	}
	if (form.password.value == "") { 
		alert('Please enter password');
		return false;
	}
	return true;
}

