function doLogin() {
	u = document.pwForm.user.value;
	p = document.pwForm.pass.value;
	if (u == "guest" && p == "together") {
		popUpWindow('http://www.chaztaylor.com/cti/ppt0508/', 785, 510);
	} else if (u == "guest" && p == "together2") {
		popUpWindow('http://www.chaztaylor.com/cti/ppt0806/', 785, 510);
	} else if (u == "tv guest" && p == "together") {
	popUpWindow('http://www.chaztaylor.com/cti/ppt0906/', 785, 510);
	}
	else {
		alert('Invalid username and/or password.\n\nPlease try again or call 1-615-292-0063\nfor a login ID and password.');
		document.pwForm.reset();
		document.pwForm.user.focus();
	}
	return true;
}

var popUpWin=0;
function popUpWindow(URLStr, width, height) {
  if(popUpWin) {
    if(!popUpWin.closed) popUpWin.close();
  }
	var left = screen.width/2 - width/2;
	var top = (screen.height/2 - height/2) - 30;
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
