
function getObj(objName) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[objName] : document[objName];
}

function getFlashMovieObject(movieName)
{
  if (window.document[movieName]) 
  {
      return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1)
  {
    if (document.embeds && document.embeds[movieName])
      return document.embeds[movieName]; 
  }
  else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
  {
    return document.getElementById(movieName);
  }
}


function checkFlash(id){

	var flash = getFlashMovieObject('flash');
	var checked = document.getElementById(id).checked;
	
	if(checked==true) {
		flash.checkIt(id);
	} else {
		flash.unCheckIt(id);
	}
   
}

var exit=1;