| 
/* 
*(c) 2003 christoph althammer [email protected]
 *         http://www.milpa.de
 *
 *         GNU GENERAL PUBLIC LICENSE
 *         die deutsche Übersetzung der GPL ist zu finden auf www.suse.org.
 *
 *  auth: c. althammer
 *  date: 2003-03-03s
 *    mod : JS WIDGET LIB
 *
 */
 
 
 
 function GUIRedir(Url) {
 if (Url != '')    window.location.href = Url;
 }
 function GUIOpenWindow(imageURL,imageTitle){
 PopUp = window.open(url,'',"status=no,toolbar=no,location=no,menu=no,screenX=10,screenY=10,width=600,height=400,resizable=yes,scrollbars=yes,dependent=yes");
 PopUp.focus();
 }
 
 function GUIOpenPopupWindow(url){
 PopUp = window.open(url,'',"status=no,toolbar=no,location=no,menu=no,screenX=10,screenY=10,width=600,height=400,resizable=yes,scrollbars=yes,dependent=yes");
 PopUp.focus();
 }
 
 |