var movingup = false;
var movingdown = false;
var moveup;
var movedown;
var content_target=0;
var content_left=0;

function $id(id){ return document.getElementById(id); }
function start_moving(target){ content_target = target; moving_content(); }
function moving_content(){ b = setTimeout("moving_content();",5); 	content_left = content_left - ( content_left -content_target )/10; if( content_left == content_target){ clearTimeout(b); }else{ $id('content').scrollLeft = content_left; } }

function relocate(){ window.moveTo(0,0); window.resizeTo(screen.width,screen.height); relocate_quickmenu(); }
function relocate_quickmenu(){ $id('quickmenu').style.top=parseInt(document.body.clientHeight)-15; }
function end_quickmenu(){ clearTimeout(moveup); if (document.body.clientHeight<768){ movedown = setTimeout("end_quickmenu();",5); if(parseInt($id('quickmenu').style.top)>=parseInt(document.body.clientHeight)-15){ clearTimeout(movedown); }else{ $id('quickmenu').style.top = parseInt($id('quickmenu').style.top)+2; 	} } }
function moving_quickmenu() { clearTimeout( movedown ); if (document.body.clientHeight<768) { moveup = setTimeout("moving_quickmenu();",5); if(parseInt($id('quickmenu').style.top)<=parseInt(document.body.clientHeight)-110) { clearTimeout(moveup); } else {  $id('quickmenu').style.top = parseInt($id('quickmenu').style.top)-2; } } }

function setEmbed() 
{ 
  var obj = new String; 
  var parameter = new String; 
  var embed = new String;
  var html = new String; 
  var allParameter = new String; 
  var clsid = new String; 
  var codebase = new String; 
  var pluginspace = new String; 
  var embedType = new String;
  var src = new String; 
  var width = new String; 
  var height = new String;
    
  this.init = function( getType , s ,w , h ) { //
      if ( getType == "flash") 
      { 
        clsid = "D27CDB6E-AE6D-11cf-96B8-444553540000";       
        codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"; 
        pluginspage = "http://www.macromedia.com/go/getflashplayer"; 
        embedType = "application/x-shockwave-flash"; 
      } 
      /* type 
      else if ( ) 
      { 
      } 
      */ 
      parameter += "<param name='movie' value='"+ s + "'>\n";  
      parameter += "<param name='quality' value='high'>\n";    
      src = s; 
      width = w; 
      height = h; 
  } 
  
   this.parameter = function( parm , value ) {      
      parameter += "<param name='"+parm +"' value='"+ value + "'>\n";        
      allParameter += " "+parm + "='"+ value+"'"; 
  }  
  
  this.show = function() { 
      if ( clsid ){ 
        obj = "<object classid=\"clsid:"+ clsid +"\" codebase=\""+ codebase +"\" width='"+ width +"' height='"+ height +"'>\n"; 
      } 
      
      embed = "<embed src='" + src + "' pluginspage='"+ pluginspage + "' type='"+ embedType + "' width='"+ width + "' height='"+ height +"'"+ allParameter +" ></embed>\n"; 
      
      if ( obj ){ 
        embed += "</object>\n"; 
      } 
      
      html = obj + parameter + embed; 
      document.write( html );  
  } 

} 

