//For shuttle pop up
var mainMovieWindow1 = null;
function popUpShuttle(theUrl){
	if (mainMovieWindow1 && !mainMovieWindow1.closed && mainMovieWindow1.open) {
		mainMovieWindow1.focus();
	} else {
		var screenWidth = screen.width;
		var screenHeight = screen.height;
		settings = "height=400,width=790,toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,left=0,top=0,screenX=0,screenY=0"
		mainMovieWindow1=window.open(theUrl,"shuttlePop",settings);
	}
}
//for Tournament sign up pop up
var mainMovieWindow2 = null;
function popUpTourney(theUrl){
	if (mainMovieWindow2 && !mainMovieWindow2.closed && mainMovieWindow2.open) {
		mainMovieWindow2.focus();
	} else {
		var screenWidth = screen.width;
		var screenHeight = screen.height;
		settings = "height=500,width=650,toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,left=0,top=0,screenX=0,screenY=0"
		mainMovieWindow2=window.open(theUrl,"TournyPop",settings);
	}
}
//For shuttle pop up
var mainMovieWindow3 = null;
function popUpGoogle(theUrl){
	if (mainMovieWindow3 && !mainMovieWindow3.closed && mainMovieWindow3.open) {
		mainMovieWindow3.focus();
	} else {
		var screenWidth = screen.width;
		var screenHeight = screen.height;
		settings = "height=500,width=500,toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,left=0,top=0,screenX=0,screenY=0"
		mainMovieWindow3=window.open(theUrl,"googlePop",settings);
	}
}
//for Tournament sign up pop up
var mainMovieWindow4 = null;
function popUpMenu(theUrl){
	if (mainMovieWindow4 && !mainMovieWindow4.closed && mainMovieWindow4.open) {
		mainMovieWindow4.focus();
	} else {
		var screenWidth = screen.width;
		var screenHeight = screen.height;
		settings = "height=500,width=650,toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,left=0,top=0,screenX=0,screenY=0"
		mainMovieWindow4=window.open(theUrl,"MenuPop",settings);
	}
}


