var POSITIVE_INTEGER    = /^[1-9]\d*$/;  //匹配正整数
var NEGATIVE_INTEGER    = /^-[1-9]\d*$/; //匹配负整数
var MATCH_DBLCHARACTER  = /^\x00-\xff/; // 匹配双字节
var MATCH_STRINGNUMBER  = /^[A-Za-z0-9.。_]+$/; //匹配数字和字符

/*check if str is a positive integer*/
function TF_POSITIVEINT(str){if(POSITIVE_INTEGER.test(str)){return true;}else{return false;}}
/*check if str is a negative integer*/
function TF_NEGATIVEINT(str){if(NEGATIVE_INTEGER.test(str)){return true;}else{return false;}}
/*check if str is double character*/
function VL_MATCH_DBLCHARACTER(str){return MATCH_DBLCHARACTER.test(str);}
/*check if str consist of number and character*/
function TF_STRINGNUMBER(str){return MATCH_STRINGNUMBER.test(str);}

/** made for IE&FireFox set default height of obj **/
var obj_default_height=400;
function setDefaultBodyHeight(obj,d_h){
    if(d_h==0 || d_h==""){d_h=obj_default_height;}
    
    obj.style.height=d_h;
}

function getBrowser()
{
   if(navigator.userAgent.indexOf("MSIE")>0)return "IE";
   if(isFirefox=navigator.userAgent.indexOf("Firefox")>0)return "FF";
   if(isSafari=navigator.userAgent.indexOf("Safari")>0)return "SA";
   if(isCamino=navigator.userAgent.indexOf("Camino")>0)return "CA";
   if(isMozilla=navigator.userAgent.indexOf("Gecko/")>0)return "GE";
   return "";
}

// *********************************** web function code here **********************************
var web_host = "http://"+location.host;
  

var ps_pic = web_host+"/share/images/slides/";
var ps_swf = web_host+"/share/images/";
function picSwitch(){
    var focus_width=900
    var focus_height=350
    var swf_height = focus_height
    var pics=ps_pic+'ChinaBusinessSentimentStudy.jpg|'
            +ps_pic+'HighEndLifeStyleAndWellness.jpg|'
            +ps_pic+'focus_group_china_FGC_slide1.jpg|'
    		+ps_pic+'focus_group_china_FGC_slide2.jpg|'
    		+ps_pic+'focus_group_china_FGC_slide3.jpg';
    var links='http://www.ddm-asia.com/en/events/events_ChinaBusinessSentimentStudy.php|'
            +'http://www.ddm-asia.com/en/events/events_HighEndLifeStyleAndWellness.php|'
            +'|'
            +'|'
            +'';
    var texts='The 2012 DDMA ChinaBusiness Sentiment Study'
            +'|China 2012 High End Lifestyle and Wellness Discussions'
            +'|test'
            +'|test'
            +'|';
    
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="'+ focus_width +'" height="'+ swf_height +'">');
    document.write('<param name="allowScriptAccess" value="sameDomain">');
    document.write('<param name="movie" value="'+ps_swf+'slide.swf">');
    document.write('<param name="quality" value="high">');
    document.write('<param name="bgcolor" value="#DADADA">');
    document.write('<param name="menu" value="false">');
    document.write('<param name="wmode" value="opaque">');
    document.write('<param name="FlashVars" value="pics='+pics+'&amp;links='+links+'&amp;texts='+texts+'&amp;borderwidth='+focus_width+'&amp;borderheight='+focus_height+'">');
    document.write('<embed src="'+ps_swf+'slide.swf" wmode="opaque" FlashVars="pics='+pics+'&amp;links='+links+'&amp;texts='+texts+'&amp;borderwidth='+focus_width+'&amp;borderheight='+focus_height+'" menu="false" bgcolor="#DADADA" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
   	document.write('</object>');
}
