
/*
 * Copyright © 2007 User Interface Design GmbH. All Rights Reserved.
 *
 * File: uidweb4.js
 *
 * Description: JavaScript
 *
 * Last modified at: 9 August 2007
 *
 * Last modified by: Juergen Kayser <juergen.kayser_ext@uidesign.de>
 *
 */


/**************************************** open Popup ****************************************/

function openPopup(TargetURL, WndWidth, WndHeight) {
  wndPopup = window.open(TargetURL, 
                         "wndPopup", 
                         ("width=" + WndWidth + ", height=" + WndHeight + ", left=100, top=100, scrollbars=no, resizable=no, menubar=no, toolbar=no, status=no"));
  wndPopup.focus();
}


/**************************************** set Value ****************************************/

function setValue(id, value) {
  if (document.getElementById(id).value == '') {
    document.getElementById(id).value = value;
  }
}


/**************************************** clear Value ****************************************/

function clearValue(id, value) {
  if (document.getElementById(id).value == value) {
    document.getElementById(id).value = '';
  }
}

