	function popup( links, width, height )
	{
		var scrH = screen.height;
		var scrW = screen.width;

//		if( scrH > 0 && height > scrH - 80 )
//	                var winCmd = window.open( links, 'Logic_CMS', 'height='+ (scrH-80) +', width='+ width +', top='+ ( scrH / 2 - height ) +', left='+ ( scrW / 2 - width ) +', toolbar=0, titlebar=1, status=0, menubar=0, scrollbars=1, resizable=1' );
//		else
	                var winCmd = window.open( links, 'Logic_CMS', 'height='+ height +', width='+ width +', top='+ ( scrH / 2 - height ) +', left='+ ( scrW / 2 - width ) +', toolbar=0, titlebar=1, status=0, menubar=0, scrollbars=1, resizable=1' );

		winCmd.focus();
	}

