//passedwidth = getURLParam("width") ;
  
function queryVar(variable) { 

  query=args;
  vars=query.split('&');
  
  for(i=0; i<vars.length; i++) {
    pair=vars[i].split('=');
    if(pair[0]==variable) return pair[1];
  }
  
} 
  

	var argwidth  = queryVar('vwidth');
	var argheight = queryVar('vheight');
	//document.write('String is '+string+'<br>Name is '+name);
	//alert('Width is '+argwidth+' ... Height is '+argheight);
	
document.write('<div align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+argwidth+'" height="'+argheight+'" id="FLVPlayer">');
document.write('<param name="movie" value="flvplayer.swf?'+args+'"/>');
//document.write('<param name=\"salign\" value=\"lt\" />');
document.write('<param name=\"quality\" value=\"high\" />');
document.write('<param name=\"scale\" value=\"1\" />');
//document.write('<param name=\"bgcolor\" value=\"ccc\" />');
document.write('<embed src="flvplayer.swf?'+args+'" width="'+argwidth+'" height="'+argheight+'" name="FLVPlayer" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/>'); 
document.write('</object></div>');
//alert(args);
