function openWin(path,name,width,height,scroll) {
	features = "width="+width+",height="+height+"scrollbar="+scroll;
	popWindow = window.open(path,name,features);
	popWindow.focus();
}
/*
	newsletter sign up widget
*/
function aCLS(which) {
	if(which.value == which.defaultValue) { which.value = ''; }
	else if (which.value == ''){ which.value = which.defaultValue; }
}
function chkAdminSignUp(frm) {
	if( frm.PAGE_CODES.value == '' ) {
		if(jQuery('#suError').length > 0) {
			jQuery('#suError').html('You must select a role.');
		}
		else { jQuery('<p class="error" id="suError">You must select a role.</p>').prepandTo('#nlFRM'); }
		return false;
	}
}