function intro_html_GetTagScript1(){
	var sTag = ''
		+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="320" height="110">'
		+ '                          <param name=movie value="media/logo.swf">'
		+ '                          <param name=quality value=high>'
        + '                          <param name=wmode value=transparent>'
        + '                          <param name=bgcolor value=#121212>'
		+ '                          <embed src="media/logo.swf" quality=high bgcolor=#121212 pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="320" height="110">'
		+ '                          </embed> '
		+ '                        </object>'
		+ '';
	document.write (sTag);
}

function checkform(theform){
    if(theform.咨询内容.value==""){
    alert("咨询内容必须填写!");
	theform.咨询内容.focus();
	return false;
  }
    if(theform.您的电话.value==""){
    alert("您的电话必须填写!");
	theform.您的电话.focus();
	return false;
  }
    if(theform.您的姓名.value==""){
    alert("您的姓名必须填写!");
	theform.您的姓名.focus();
	return false;
  }
  }

