// common.js
// common functions used throughout the NCY Masters web site

//opens the given url in a pop up window instead of the main window
function popup(url){
	var win = window.open(url);
}

function setStatus(text){
	self.status=text;
	return true;
}

function clearStatus(){
	self.status='';
	return true;
}
