/* ---- Popup ---- */
var newwindow;
function popup(_boothID){
	var popURL = "exhibitor_popup.aspx?bid=" + _boothID;
	newwindow=window.open(popURL,'Booth','height=400,width=500,scrollbars=yes,screenX=200,screenY=200,left=200,top=200');
	if (window.focus) {newwindow.focus()}
}
function Close(){
	window.close();
}
function nopop(){
	//don't do anything! 
}