// platz fuer javascripts

function ow(URL, w, h) {
	
	options='width=' + w + ', height=' + h + ', toolbar=0, scrollbars=0 ,resizable=1, alwaysRaised=1, dependent=1';
	options="'" + options + "'";

	//alert('URL:' + URL + '\nwidth=' + w + '\nheight=' + h);
	fe=window.open(URL, '' , options);
	fe.focus();
	fe.moveTo(0,0);
	fe.resizeTo(w,h);
}

