
var BRname = navigator.appName; 
var BRversion = navigator.appVersion;   
function ieVersion(){

	verArr = BRversion.split(';');
	len = verArr[1].indexOf('MSIE')
	len += 5;
	ch = verArr[1].charAt( len )
	ch = parseInt( ch );
	
	if( ch >= 5 ) 
		return true;
	return false;
}
var NS4, NS6, IE4, IE5;
NS4 = ( (BRname=='Netscape') && (BRversion.indexOf('4')!=-1) ) ? true : false;
NS6 = ( (BRname=='Netscape') && (BRversion.indexOf('4')==-1) ) ? true : false;
IE4 = ( (BRname.indexOf('Microsoft')!=-1) && (ieVersion()==false) ) ? true : false;
IE5 = ( (BRname.indexOf('Microsoft')!=-1) && (ieVersion()==true) ) ? true : false;
	
	function openSite(page_path,page_name, theWidth, theHeight)
	{
		var myWinWidth = (theWidth != null? theWidth : 733);
		var myWinHeight = (theHeight != null? theHeight : 442);
		var screenWidth = screen.width;
		var screenHeight = screen.height;
		var placeMyWindowX = (screenWidth-myWinWidth)/2;
		var placeMyWindowY = (screenHeight-myWinHeight)/2;
		var q = window.open(page_path,page_name ,'scrollbars=no,resizable=yes,toolbar=no,scroll=no, left='+placeMyWindowX+',top='+placeMyWindowY+',width='+myWinWidth+',height='+myWinHeight);

		q.focus();
	}

function FDS()
{
	var fromLeft = window.screenLeft + 40;
	var fromTop = window.screenTop;

	theLink = '/premium/fashionDesign/index.pl?mode=gs';

	activityWinHandler = window.open(theLink,'premiumActivityWinFDS','scrollbars=yes,resizable=yes,left='+fromLeft+',top='+fromTop+',width=800,height=500');
}
