/*
// ----------------------------------------------------------------------
// 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 popModal(mod, file)
{	
	//var link = 'modules/'+mod+'/'+file;
	var link = 'index.php?name='+mod+'&file='+file;
	
	var width = 760;
	var height = 600;
	
	//if (window.showModalDialog)
	//{
	//	subWindow = window.showModalDialog(link, 'child', 'dialogWidth:'+width+'px;dialogHeight:'+height+'px;center:yes');
	//}
	//else
	//{
		var x = window.screen.width;
		var y = window.screen.height;

		var posx = (x-width)/2;
		var posy = (y-height)/2;

		subWindow = window.open(link, 'child', 'width='+width+',height='+height+',top='+posy+',left='+posx+',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,fullscreen=no');
		subWindow.focus();
	//}
}

function popHelp(mod, file)
{	
	var link = 'modules/'+mod+'/help/'+file;

	var width = 760;
	var height = 600;
	
	var x = window.screen.width;
	var y = window.screen.height;

	var posx = (x-width)/2;
	var posy = (y-height)/2;

	helpWindow = window.open(link, 'child', 'width='+width+',height='+height+',top='+posy+',left='+posx+',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,fullscreen=no');
	helpWindow.focus();
	
}
