//<!--




var hw=""
var nhw=""
function openHelpWindow(path){
	if(navigator.appName.indexOf("WebTV")==-1){
		hw=window.open(path,"helpwin","height=490,width=420,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no");
		if((navigator.userAgent.toLowerCase().indexOf("msie")==-1)||(parseInt(navigator.appVersion)>=5)) hw.focus();
		return false;
	}else{
		document.location.href=path;
	}
}

function openNonHelpWindow(path){
	if(navigator.appName.indexOf("WebTV")==-1){
		nhw=window.open(path,"third","height=400,width=600,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,titlebar=yes");
		nhw.focus();
		return false;
	}else{
		document.location.href=path;
	}
}

function openBietWindow(path){
// called by test gebot
	if(navigator.appName.indexOf("WebTV")==-1){
//alert('n webtv');
		hw=window.open(path,"gebotsfenster","top=50,screenX=100,left=200,screenY=100,height=400,width=500,scrollbars=no,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no");
		if((navigator.userAgent.toLowerCase().indexOf("msie")==-1)||(parseInt(navigator.appVersion)>=5)) hw.focus();
		return false;
	}else{
//alert('y webtv');
		document.location.href=path;
	}
}

var defaultPopWide = 800;
var defaultPopHigh = 600;
var defaultPopTitle = "nordphila Los-Nr picture."; //do not use (" or ') in titles

function popImageWin( sImage , iWide , iHigh , sTitle ){
	if(sImage == null){
		alert("no image specified.");
	} else {
		imgTitle = sTitle == null ? "&title=" + escape(defaultPopTitle)  : "&title=" + escape(sTitle) ;
//		imgQuery = "?image=" + sImage + imgTitle;
		imgQuery = sImage ;

		winWide = iWide == null ? defaultPopWide  : iWide ;
		winHigh = iWide == null ? defaultPopHigh  : iHigh ;

		imgWindow = window.open(imgQuery, "popWindow" , "width="+winWide.toString()+",height="+winHigh.toString()+",status=0,toolbar=0,scrollbars=0,menubar=0,screenX=0,screenY=0");
//		imgWindow = window.open("./jpg/", "popWindow" , "width="+winWide.toString()+",height="+winHigh.toString()+",status=0,toolbar=0,scrollbars=0,menubar=0,screenX=0,screenY=0");
	}
}




// -->

