function OpenPhoto(sUrl, iWidth, iHeight){
	window.open("wPhoto.aspx?PhotoUrl=" + sUrl + "&Width=" + iWidth + "&Height=" + iHeight, "Photo", "width=" + iWidth + ",height=" + iHeight + ",menubar=0,toolbar=0")
}
function OpenWindow(sUrl, iWidth, iHeight){
	window.open(sUrl, "PopUpWindow", "width=" + iWidth + ",height=" + iHeight + ",menubar=0,toolbar=1,scrollbars=1")
}
function NextPhoneField(sFieldName, iFieldNo){
	if (iFieldNo == 1){
		if (document.getElementById(sFieldName + "1").value.length == 3){
			document.getElementById(sFieldName + "2").focus();
			document.getElementById(sFieldName + "2").select()
		}
	}
	else if (iFieldNo == 2){
		if (document.getElementById(sFieldName + "2").value.length == 3){
			document.getElementById(sFieldName + "3").focus();
			document.getElementById(sFieldName + "3").select()
		}
	}
}