// JavaScript Document
function LoadFlash(url,wmode,width,Height)
 { 
 document.write(
   '<embed src="' + url + '" wmode=' + wmode +
   ' quality="high" pluginspage=http://www.macromedia.com/go/getflashplayer type="application/x-shockwave-flash" width="' + width + 
   '" height="' + Height + '"></embed>');   
 }
function fitFrameHeight(obj){
      var frameHeight;
	  frameHeight=0
      if(document.getElementById){
        if(obj){
          if(obj.contentDocument&&obj.contentDocument.body.offsetHeight){
            frameHeight=obj.contentDocument.body.offsetHeight;
          }
          else if(document.frames[obj.name].document&&document.frames[obj.name].document.body.scrollHeight){
            frameHeight=document.frames[obj.name].document.body.scrollHeight;
          }
		  //alert("show_"+frameHeight);
          obj.height=frameHeight;
		  if (obj.height<310){
			  obj.height=310;
			  }
		//parent.document.getElementById("maininfo").style.height=obj.height+"px";
        }
      }
    }
