Login   Register  
PHP Classes
elePHPant
Icontem

File: gui.lib.js

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of C. Althammer  >  Application Framework Classes  >  gui.lib.js  >  Download  
File: gui.lib.js
Role: Auxiliary script
Content type: text/plain
Description: gui.lib.js
Class: Application Framework Classes
Bundle of classes for object orientated coding
Author: By
Last change:
Date: 2003-06-26 15:58
Size: 817 bytes
 

Contents

Class file image Download
/* 
 *(c) 2003 christoph althammer info@milpa.de 
 *         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();
}