/**
 * Main Javascript Event
 *
 * IE, Opera, Gecko
 *
 * LICENSE:
 *
 * Copyright (c) 2005 net-dsign
 * All rights reserved.
 *
 * Redistribution "whole of" or "part of" this software, with or without
 * modification, are not permitted without permission from net-dsign.
 *
 * THIS SOFTWARE IS RESTRICTED USE "AS IS" AND WITHOUT ANY WARRANTY AS TO
 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR ANY OTHER WARRANTIES
 * EITHER EXPRESSED OR IMPLIED. THE AUTHOR WILL NOT BE LIABLE FOR DATA LOSS,
 * DAMAGES, LOSS OF PROFITS OR ANY OTHER KIND OF LOSS WHILE USING OR MISUSING
 * THIS SOFTWARE.
 *
 * @category Script
 * @package Webcore
 * @author Ahmad Amarullah <amarullz@yahoo.com>
 * @copyright Copyright (c) 2005 net-dsign
 * @license net-dsign License
 * @version CVS: 0.0.1
 */
function getID(field){ 
    return document.getElementById ? document.getElementById(field) : document.all(field); 
}
function show(field){
    getID(field).style.visibility='visible';
}
function hide(field){
    getID(field).style.visibility='hidden';
}