<!--

function PopupPic(sPicURL) {

	var winProp = 'width=200,height=200,left=200,top=200,scrollbars=0,resizable=1,menubar=yes';
	window.open( "popup.asp?"+sPicURL, "", winProp);

}

var vphone = /^\D*([1-9]\d{2})\D*(\d{3})\D*(\d{4})\D*$/

function formatphone(x){

	if (x.value != 0){
		if(vphone.test(x.value)){
			x.value=x.value.replace(vphone,'($1) $2-$3');
		}
		else {
			alert('Invalid phone number!');
		}
	}
}

// -->