//=================================================================
// Purpose: List support staff positions
// Developer: C. Ran
//
//      Date: 12-1-2008
//
//  Inputs: objForm - form object
//
// Outputs: True if validation successfully, otherwise false
//
// Modify History:
//
//==================================================================

function showSrc(mObj){
   if(document.getElementById && !(document.all)) {
      h = mObj.contentDocument.body.scrollHeight;
      //h = document.getElementById('iframename').contentDocument.body.scrollHeight;
     // document.getElementById('iframename').style.height = h;
      mObj.height = h;
  }else if(document.all) {
     // h = document.frames('iframename').document.body.scrollHeight;
     // document.all.iframename.style.height = h;
      h = mObj.document.body.scrollHeight;
      mObj.height = h;
  }

  // mObj.height=600;
   //openUrl='http://www.ccsd.net/jobs/88/SSSindex.php';
   //window.open(openUrl);
}

function offSrc(mObj){
   mObj.height=316;
   //openUrl='http://www.ccsd.net/jobs/88/SSSindex.php';
   //window.open(openUrl);
}