function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function closeCurrentWindow() {
  window.close();
}

function closeAndJump(sNewURL){
	MM_openBrWindow(sNewURL,'Interactive_Demo','status=yes,menubar=no,scrollbars=no,resizable=no,width=950,height=650')
	window.close();
	//commented out because we no longer are changing the parent location page.
	//window.opener.location = sNewURL;	
	
}