<!-- 
//function opens a new window 
function openNewWindow(theUrl, flashWinWidth, flashWinHeight) { 
	var newWindowWidth = flashWinWidth;
	var newWindowHeight = flashWinHeight;
	var newWindowX = (screen.width - newWindowWidth)/2;
	var newWindowY = (screen.height - newWindowHeight)/2;
	//alert(screen.width + ", " + screen.height + ": " + newWindowX + ", " + newWindowY);
	//open a new 770x550 window in the center of the screen. 
	var newWindow = window.open(theUrl, 'windowName', 'width='+newWindowWidth+',height='+newWindowHeight+',left='+newWindowX+',top='+newWindowY+'');
	newWindow.focus(); 
} 

//function opens a new window 
function getNewWindow(theUrl) { 
	var newGetFlash = window.open(theUrl, 'getNewWindowName'); 
}

//function opens a new window 
function getAdobeWindow(theUrl) { 
	var newGetAdobe = window.open(theUrl, 'getAdobeWindowName'); 
}  
--> 
