<!--

////////////////////// script by subhash //////////////////////

//////////////////////  www.subhash.at  //////////////////////
function zentriertesFenster(theURL,winName,h,w,offset) {
	if (offset == undefined) { // wenn's keine Angabe zum Versatz gibt
		offset = 0;
	}
	if (screen.width && screen.height) {
		var links =  Math.round((screen.width - w)/2) + offset;
		var oben = Math.round((screen.height - h)/2 - screen.height/75);
	}
	else {
		var links = 10;
		var oben = 10;
	}
	features = 'directories=0,personalbar=0,toolbar=0,menubar=0,status=0,location=0,scrollbars=1,resizable=1,'+'height='+h+',width='+w+',top='+oben+',left='+links;
  winName = window.open(theURL,winName,features);
	winName.focus();
}
//-->
