function fcc_action(url,url_jump,width,height)
{
	window.open("http://flets-square-guide.com/fsnavi/c_1.html?" + url,"_blank")
}

function fcc_action2(url,url_jump)
{
	var fcc_object;
	
	if(navigator.userAgent.indexOf("Firefox") >= 0 || navigator.userAgent.indexOf("Netscape") >= 0 || navigator.userAgent.indexOf("Opera") >= 0 || navigator.platform.indexOf("Mac") >= 0){
		window.open(url_jump,'_top');
	}
	
	try 
	{
  		if(window.ActiveXObject)
  		{
    		fcc_object = new ActiveXObject("AxFslead.fslead.1");
  		}
  		else if (window.GeckoActiveXObject)
  		{
    		fcc_object = new GeckoActiveXObject("AxFslead.fslead.1");
  		}
  	}
	catch(e)
	{
		window.open(url_jump,'_top');
	}

	if (fcc_object)
	{
	
		fcctrl.Init();
	
		fcctrl.ParamF = ' /j "http://www.flets/"  /r1 4 /r1r 1';
		fcctrl.TimerF = 90;
		//fcctrl.ParamR = ''; //FOR RTCTRL
		//fcctrl.TimerR = 300; //FOR RTCTRL

		fcctrl.Execute();
		
		var errorlevel=fcctrl.RtnCodeF;
	
		if(errorlevel == 101 || errorlevel == 102){

			window.open(url,'_top');	
		
		}else{
			
			if(errorlevel == 201){window.open(url201,'_top');}
			if(errorlevel == 202){window.open(url202,'_top');}
			if(errorlevel == 203){window.open(url203,'_top');}
			if(errorlevel == 204){window.open(url204,'_top');}
			if(errorlevel == 205){window.open(url205,'_top');}
		
		}

	}
}