<!--
	function ShowSpellChecker()
	 {
		openCenterWin("modules/spell_checker/index.php",250,100);
	}
	
	function ShowSmilies()
	{
		openCenterWin2("/board/smilies",190,270);
	}
	
	function openCenterWin2(url,theWidth,theHeight)
	{
		var theTop=(screen.height/2)-(theHeight/2);
		var theLeft=(screen.width/7)-(theWidth/2);
		var features=
		'height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes";
		theWin=window.open(url,'',features).focus();
	}	
	
	function openCenterWin(url,theWidth,theHeight)
	{
		var theTop=(screen.height/2)-(theHeight/2);
		var theLeft=(screen.width/2)-(theWidth/2);
		var features=
		'height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes";
		theWin=window.open(url,'',features).focus();
	}
//-->
