window.name = 'cmsMain';	
	
function validateNumber(numberField) {
	numberFieldValid = true;
	if(numberField.value=='' || numberField.value=='0'){
		numberFieldValid = false;
	}else{
		for(i=0; i<numberField.value.length; i++){
			if(!(numberField.value.charAt(i)=='.')){
				if(numberField.value.charAt(i)<'0' || numberField.value.charAt(i)>'9'){
					numberFieldValid = false;
				}
			} else {
				numberFieldValid = false;
			}
		}
	}
	return numberFieldValid;
}

function showHelpMenu(){
	newWindowURL = jsPathPrefix+'helpMenu';
	newWindowName = 'Help_Menu';
	newWindowProps = 'width=750,height=500,toolbar=no,scrollbars=yes,resizable=yes,location=no,status=yes,directories=no,menubar=no,favorites=no,locationbar=no';
	newWindow = window.open(newWindowURL, newWindowName, newWindowProps);
	newWindow.name = newWindowName;
	newWindow.moveTo(0,0);
	//newWindow.resizeTo(screen.availWidth,screen.availHeight);
}

function showNewWindow(url,width,height){
	newWindowURL = url;
	newWindowName = 'CMS_Popup_Window';
	newWindowProps = 'width='+width+',height='+height+',toolbar=no,scrollbars=yes,resizable=yes,location=no,status=yes,directories=no,menubar=no,favorites=no,locationbar=no';
	newWindow = window.open(newWindowURL, newWindowName, newWindowProps);
	newWindow.name = newWindowName;
	newWindow.moveTo(0,0);
	//newWindow.resizeTo(screen.availWidth,screen.availHeight);
}

function openInNewWindow(address, windowName){
	newWindow = window.open(address,windowName);
	newWindow.name = windowName;
	newWindow.focus();
}
