function openBigger(theUrl){
	screenWidth = screen.availWidth - 50;
	screenHeight = screen.availHeight - 50;
	germWin = window.open(theUrl, "germain", "width=" + screenWidth + ",height=" + screenHeight + ",location=0,directories=0,status=0,toolbar=0,scrollbars=1,resizable=1,menubar=0,top=0,left=0");
	germWin.focus()
}
function openHeight(theUrl,theHeight){
	screenWidth = screen.availWidth - 50;
	germWin = window.open(theUrl, "germain", "width=" + screenWidth + ",height=" + theHeight + ",location=0,directories=0,status=0,toolbar=0,scrollbars=1,resizable=1,menubar=0,top=0,left=0");
	germWin.focus()
}
function launchGermain(){
	screenWidth = screen.availWidth - 10;
	screenHeight = screen.availHeight - 5;
	germWin = window.open("germain.html", "germain", "width=" + screenWidth + ",height=" + screenHeight + ",location=0,directories=0,status=0,toolbar=0,scrollbars=0,resizable=1,menubar=0,top=0,left=0");
	germWin.focus()
}
function launchSubdir(thePath){
	screenWidth = screen.availWidth - 10;
	screenHeight = screen.availHeight - 5;
	germWin = window.open(thePath + "germain.html", "germain", "width=" + screenWidth + ",height=" + screenHeight + ",location=0,directories=0,status=0,toolbar=0,scrollbars=0,resizable=1,menubar=0,top=0,left=0");
	germWin.focus()
}
