// JavaScript Document
function open_window(wlink, title, params){
	var rand="window_"+random_alphanumeric();
	dhtmlwindow.open(rand, "iframe", wlink, title, params, "recal");
}

function random_alphanumeric(){
	var ourDate = new Date();
	var number=ourDate.getHours()+''+ourDate.getMinutes()+''+ourDate.getSeconds()+''+ourDate.getMilliseconds();
	return number;
}

function encore(){
	open_window('encore.htm', 'What is Encore?', 'width=470px,height=400px,resize=0,scrolling=0,center=1');
}

function dates(){
	open_window('est_dates.php', 'Board of Trustees Projected Meeting Dates', 'width=470px,height=400px,resize=0,scrolling=0,center=1');
}

function email_page(qs,title){
	var rand="window_"+random_alphanumeric();
	var email_page=dhtmlwindow.open(rand, "iframe", 'email.php?'+qs+'&winid='+rand, title, 'width=470px,height=400px,resize=0,scrolling=0,center=1', "recal");
}
