function popUp(URL) {
	callExternalInterface();
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 	'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=850,height=522');");
}

function callExternalInterface() {
	/* Call a function registered as callPauseVideo in the SWF named myMovie. */
	if(getMovieName("jointone")) {
		getMovieName("jointone").callPauseVideo();
	}
}

/* This utility function resolves the string movieName to a Flash object reference based on browser type. */
function getMovieName(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	}
	else {
		return document[movieName];
	}
}
