/*
  JAVASCRIPT FUNCTIONALITY
  CATHOLIC DIOCESE SITE
  CREATED 11/29/07
  Peter DeMarco
  River City Studio
*/


var w = window;
var d = w.document;
var isie = false;


////////////////////////////////
//  GENERIC ELEMENT GETTER    //
////////////////////////////////

function getE( id ) {
  if ( d.getElementById )
    return d.getElementById( id );
  else
    return d.id;
}


/*
	FOR JOB APPLICATIONS
*/

////////////////////////////////////
// JUMP TO THE NEXT PHONE FIELD 	//
////////////////////////////////////

function jumpNext( first, second ) {
 e1 = getE( first );
 e2 = getE( second );
 
 if ( e1.value.length > 2 ) e2.focus();
 
}

////////////////////////////////////
//	MODIFY FORM FOR RESUME FORMAT	//
////////////////////////////////////

function resumeIs( format ) {
	e = getE( "resumeBox" );
	if ( format == "text" ) {
		e.innerHTML = "<textarea name='resumeText' rows='15' cols='55'></textarea>";
	}
	else {
		e.innerHTML = "<input type='file' name='resumeFile' /><br /><span style='font-size: 10px;'>* - Word Document or PDF upload</span>";
	}
}
