/**
 * Variablen die später gesetzt werdnen können
 */
 
var callWYSIWYG;

/**
 * Hostname und Pfad wird hier ermittelt. 
 * Fur spaetere Skripte wichtig
 */
var hostAndPath = 'http://' + window.location.host + window.location.pathname;
var lastIndex = hostAndPath.lastIndexOf("/")
if (lastIndex > 0 )
 	hostAndPath = hostAndPath.substr(0,lastIndex+1);
 	
/**
* Alles aufrufen, was bei onLoad gebraucht wird
*/
 
function onLoad() {
	if (enableAjax == true) {
		makeAjaxLinks();
	}
} 


function newWindow (url, title, width, height) {
	window.open( url,	title, 'width=' + width +', height=' + height + ', directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=yes, dependent=no'	);
}

