// <a href="javascript:void(0);" onclick="javascript:TE_openBrWindow('/popup/index.html','','scrollbars=no,resizable=no,width=380,height=350');"></a>
function isBrowserSupp() 
	{
	if (((navigator.appVersion.indexOf("2.0")) != -1) && (navigator.appName.indexOf("Netscape") != -1))
	        {
	        return false;
	        }
	else 
	        {
	        return true;
	        }
	}
function TE_openBrWindow(theURL,winName,features) 
	{
 
	//window.open(theURL,winName,features);

	var heightspeed = 6;
	var widthspeed = 8;

	if (document.all)
		{
	
		var winwidth = 616; 
		var winheight = 600; 
	
		var px = Math.ceil( (window.screen.width  - winwidth) / 2 );
		var py = Math.ceil( (window.screen.height - winheight) / 2 );
	
		var sizer = window.open(theURL,"","left=" + px + ",top=" + py + ",width=1,height=1,resizable=no,scrollbars=yes");
		
		sizer.window.moveTo(px,py);
		
		for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed)
			{
			sizer.resizeTo("1", sizeheight);
			}
		
		for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed)
			{
			sizer.resizeTo(sizewidth, sizeheight);
			}
	
		//sizer.location = theURL;
		}
	
	else
	//window.location = website;
	window.open(theURL,winName,features);
	}