/*
// ----------------------------------------------------------------------
// Original Author of file: phpBB team
// Purpose of file: bbcode javascript
// ----------------------------------------------------------------------
*/
function openwindow(hlpfile)
{
	window.open (hlpfile,"Help","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=600,height=400");
}
function popWindow(seite,w,h) {
	var biz = null;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable,location=no';	

	satelit = window.open(seite,"Logitech",settings);
	if(satelit.window.focus){
		satelit.window.focus();
	}
}
function popScroll(seite,w,h) {
	var biz = null;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	
	scrollsettings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,menubar=no,toolbar=no,resizable';	

	satelit = window.open(seite,"Logitech",scrollsettings);
	if(satelit.window.focus){
		satelit.window.focus();
	}
}
function popBusiness(arg) {

	w = 1004;
	h = screen.height - 100;
	var biz = null;
	
	if(arg == "de" || arg == "at" || arg == "" || !arg){
		if(arg == "" ) arg = "de";
		seite = "index.php?module=Pagesetter&func=viewpub&tid=4&pid=7&theme=biz"+arg;
	}else{
		seite = arg;
	}	
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	
	scrollsettings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=yes,menubar=yes,toolbar=no,resizable';	

	biz = window.open(seite,"Logitech",scrollsettings);
	if(biz.window.focus){
		biz.window.focus();
	}
}
