/*
 * $Source: /home/cvsroot/fsc3/jsp/common/common.js,v $
 * $Revision: 1.2 $
 * $Author: alau $
 * $Date: 2004/01/21 00:00:17 $
 * Copyright 2003 FulFil-Net
 */


/////////////////////////////////////////////////////////////////
// all common javascript function should store in this js file //                 
/////////////////////////////////////////////////////////////////

// show everythings inside <div></div> 
function showDiv(divName) {
	document.getElementById(divName).style.display = 'block';
}

// hide everythings inside <div></div>
function hideDiv(divName) {
    document.getElementById(divName).style.display = 'none';
}

// disable or enable radio buttons
function switchRadios(radioBtm, isActive)
{
    for(i= 0; i < radioBtm.length; i++)
    {
        radioBtm[i].disabled=isActive;
    }
}


// break out of frames.
function breakOutOfFrame() {
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}