<!--
function conf(msg, yeslocation){
	
	var proceed = confirm(msg);

	if(proceed == true){
		window.location=yeslocation;
	}
}

var newwindow;
function bookinfo(bid)
{
	newwindow=window.open('/includes/bookinfo.php?bid=' + bid,'today','height=190,width=310');
	if (window.focus) {newwindow.focus()}
}

function saccess(url)
{
	newwindow=window.open(url,'today','scrollbars=1,height=400,width=250');
	if (window.focus) {newwindow.focus()}
}

function newsletter(url)
{
	newwindow=window.open(url,'today','scrollbars=1,height=200,width=300');
	if (window.focus) {newwindow.focus()}
}

function pageviews(url)
{
	newwindow=window.open(url,'today','scrollbars=1,height=300,width=300');
	if (window.focus) {newwindow.focus()}
}

function OpenMailer(recip) {
	newwindow=window.open('/includes/contact_mailer.php?' + recip, 'NewW', 'scrollbars=1, width=550, height=500');
	if (window.focus) {newwindow.focus()}
}
//-->