// JavaScript Document
// CMS POPUP
<!--
	function pop(article, lang, width, height, scrollbars, resizable, left, top)
	{
	// set up defaults
	if (width == null) width = 465;
	if (height == null) height = 475;
	if (scrollbars == null) scrollbars = "yes";
	if (resizable == null) resizable = "no";
	if (left == null) left = 0;
	if (top == null) top = 0;
	url = "/page?a=" + article + "&lang=" + lang;
	
	popup=window.open(url,"","width="+width+",height="+height+",scrollbars="+scrollbars+", left="+left+", top="+top+", resizable="+resizable+"");
	}
// -->
