var isMacIE = false; 
if ( (navigator.appName == 'Microsoft Internet Explorer') && (navigator.platform == 'MacPPC') ) {
   isMacIE = true;
  } 
  
function openGame(URL) {
	aWindow=window.open(URL,"Loading","width=550,height=400,status=no,scrollbars=no,resize=no,menubar=no");
}

function openQuicktime(movie, size) {
   var lleft=(screen.availWidth/2)-(320/2);
	ttop=(screen.availHeight/2)-(260/2);
	window.open('popup_quicktime.html?name='+movie+size, 'Loading', 'width=526,height=426,toolbar=0,status=0,location=0,scrollbars=no,resizable=no');   
}

function openWindowsmedia(movie, size) {
   var lleft=(screen.availWidth/2)-(320/2);
	ttop=(screen.availHeight/2)-(260/2); 
	//movie = 'trailer1' or 'trailer2'
	//speed = 'high' 'med' 'low'
	if (size = 1)
	{
		link="http://homevideo.universalstudios.com/asx/bourne_identity_bourne_identity_post_056k.asx";
	}
	if (size = 2)
	{
		link="http://homevideo.universalstudios.com/asx/bourne_identity_bourne_identity_post_128k.asx";
	}
	
	if (size = 3)
	{
		link="http://homevideo.universalstudios.com/asx/bourne_identity_bourne_identity_post_300k.asx";
	}
	
	
	window.open('popup_windows_media.html?name='+link, 'Loading', 'width=526,height=426,toolbar=0,status=0,location=0,scrollbars=no,resizable=no'); 
}
function launchGame(game) {
   var lleft=(screen.availWidth/2)-(320/2);
	ttop=(screen.availHeight/2)-(260/2); 
	window.open('bi_game_'+game+'.html','Loading','width=550,height=400,toolbar=0,status=0,location=0,scrollbars=no,resizable=no');
}
function closeMe() {
	window.close(this);
}

