function MM_callJS(jsStr) { //v2.0
  return eval(jsStr);
}

function openFlashWindow(path)
{
   // test if the passed path has a trailing slash, if not add it
   if( path.charAt( path.length - 1 ) != "/" )
   {
      path = path + "/";
   }
   
	if ((navigator.appVersion.indexOf('Mac') != -1) && (navigator.appName=="Microsoft Internet Explorer"))
	{
		window.open(path + 'video/flash/landingsite/mars2004.html', 'mars','width=639,height=534').focus();
	}
	else
	{
		window.open(path + 'video/flash/landingsite/mars2004.html','mars','width=670,height=565').focus();
	}
}

