function others_openWindow( url, title, options, move ){

var usrWidth = (envVar.env.isMac) ? screen.width:screen.availWidth;
var usrHeight =(envVar.env.isMac) ? screen.height:screen.availHeight;

var othersInnerWidth = 900;
var othersInnerHeight = 720;

if(envVar.env.isSafari){
	othersInnerWidth = ( othersInnerWidth );
	othersInnerHeight = (othersInnerHeight + 20 );
}

	if( !envVar.env.isMac ){
		if(!envVar.env.isN7){
			if(( usrWidth >= 1023 ) && ( usrHeight >= 733 )) {
	
				othersWinLeft =0;
				othersWinTop =0;
	
				options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,favorites=no";
				var othersoptions = "width=" + othersInnerWidth + ",height=" + othersInnerHeight + ",left=" + othersWinLeft + ",top=" + othersWinTop + "," + options;
				newWin = window.open( url, title, othersoptions );
				newWin.focus();
			
			 } else {
				options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,favorites=no";
				var othersoptions = options;
				newWin = window.open( url, title, othersoptions );
				newWin.focus();
			}
		} else {
			if(( usrWidth >= 1023 ) && ( usrHeight >= 733 )) {
	
				othersWinLeft =0;
				othersWinTop =0;
	
				options = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,favorites=no";
				var othersoptions = "width=" + othersInnerWidth + ",height=" + othersInnerHeight + ",left=" + othersWinLeft + ",top=" + othersWinTop + "," + options;
				newWin = window.open( url, title, othersoptions );
				newWin.focus();
			
			 } else {
				options = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,favorites=no";
				var othersoptions = options;
				newWin = window.open( url, title, othersoptions );
				newWin.focus();
			}
		}

	}

	else if(envVar.env.isMac) {
		if(( usrWidth == 1024 ) && ( usrHeight > 767 )) {
			othersWinLeft =0;
			othersWinTop =0;
			options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,favorites=no";
			var othersoptions = "width=" + othersInnerWidth + ",height=" + othersInnerHeight + ",left=" + othersWinLeft + ",top=" + othersWinTop + "," + options;
			
			newWin = window.open( url, title, othersoptions );
			if ( envVar.env.isIE ||  envVar.env.isFire) {
				newWin.resizeTo(1014,643);
			}
			newWin.focus();
		} else if(( usrWidth >= 1024 ) && ( usrHeight >= 768 )) {
			othersWinLeft =0;
			othersWinTop =0;
			options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,favorites=no";
			var othersoptions = "width=" + othersInnerWidth + ",height=" + othersInnerHeight + ",left=" + othersWinLeft + ",top=" + othersWinTop + "," + options;
			
			newWin = window.open( url, title, othersoptions );
			newWin.focus();
		} else {
			options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,favorites=no";
			var othersoptions = options;
			newWin = window.open( url, title, othersoptions );
			newWin.focus();
		}

	} else {
		options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,favorites=no";
		var othersoptions = options;
		newWin = window.open( url, title, othersoptions );
		newWin.focus();
	}
}
