/******************************************************************************

The programming on this site is the intellectual property of Drewmedia Studios
and has	been specifically licensed to Kelly's Tavern. It may not be sold to or
used by	any other parties (in part or in whole) without	the written permission
of Drewmedia Studios. Please send inquiries to info@drewmedia.com.

/*****************************************************************************/


function openWin(url, name, w, h, perc, scroll, resize) {
	var winX = (screen.availWidth - w)*perc*.01;
	var winY = (screen.availHeight - h)*perc*.01;
	popupWin = window.open(url, name,'width=' + w + ',height=' + h + ',left=' + winX + ',top=' + winY + ',scrollbars=' + scroll + ',resizable=' + resize);
}

function openWinCentered(mypage, myname, w, h, scroll, resize) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resize;
	win = window.open(mypage, myname, winprops)
}

function isValidEmail(p_strEmail) {
	var regexp = /^\S+\@[a-zA-Z0-9\.-]+\.[a-zA-Z0-9]{2,4}$/;
	return regexp.test(p_strEmail);
}

function validateContactForm(frm) {
	//if (!isValidEmail(frm.email.value) && frm.phone.value == '') { alert('Please enter an e-mail address or phone number by which we can contact you.'); frm.email.focus(); return false; }
	return true;
}