// JavaScript Document


///FLASH INTERFACE ////


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 inputBoxBlur(inputbox_id, default_text){
	
	//alert(this);
	//alert(this.value);
	ib = document.getElementById(inputbox_id);
	
	if (ib.value == "") {
		ib.value = default_text;	
	}

	//remove focused class
	$('#'+inputbox_id).removeClass('focused');
	
	
} 

function inputBoxFocus(inputbox_id, default_text){
	
	ib = document.getElementById(inputbox_id);
	
	if (ib.value == default_text) {
		ib.value = "";	
	}
	
	//add focused class
	$('#'+inputbox_id).addClass('focused');
	
}


