try {	
	var strTitle = document.title;
	
	// error 404
	if( strTitle.indexOf("404 Not Found",0) == 0 ) {		
		s.pageType = "errorPage";
		var s_code=s.t();if(s_code)document.write(s_code);
		
	// error 400 408 500 503
	} else if( strTitle.indexOf("400 Bad Request",0) >= 0 || strTitle.indexOf("408 Request Time-out",0) >= 0 || 
		strTitle.indexOf("500 Internal Server Error",0) >= 0 || strTitle.indexOf("503 Service Unavailable",0) >= 0 ) {
		
	// www.saibarasuisan.com
	} else {
		var strPageName = location.href.split("?")[0];	/* s.pageName */
		var strChannel  = "サイバラ水産";				/* s.channel */

		s.pageName = strPageName;
		s.eVar49 = s.pageName;
		s.channel  = strChannel;
		s.eVar1    = strChannel;
		s.prop1    = strChannel;
		
		var s_code=s.t();if(s_code)document.write(s_code);
	}

} catch(e) {
}

