function showFlashObject(objID, objSource, objWidth, objHeight, objQuality, objWmode, objBgcolor)
{
	/* Default Value Setting */
	if (objID == "") objID = 'ShockwaveFlash1';
	if (objWidth == "") objWidth = '0';
	if (objHeight == "") objHeight = '0';
	if (objQuality == "") objQuality = 'best';
	
	/* Flash 8.0 version */
	document.write('<OBJECT id="' + objID + '" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.write('type="application/x-shockwave-flash" ');
	/*document.write('data="' + objSource + '" ');*/
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
	document.write('WIDTH="' + objWidth + '" HEIGHT="' + objHeight + '">');
	document.write('<PARAM NAME=menu value=false>');
	document.write('<PARAM NAME=allowScriptAccess value=always>');
	document.write('<PARAM NAME=wmode value="'+ objWmode +'">');
	document.write('<PARAM NAME=movie VALUE="'+ objSource +'">');
	document.write('<PARAM NAME=quality VALUE="'+ objQuality +'">');
	document.write('<PARAM NAME=bgcolor VALUE="'+ objBgcolor +'">');
	document.write('<embed allowScriptAccess="always" swLiveConnect="true" src="' + objSource + '" menu="false" quality="' + objQuality + '" wmode="' + objWmode + '" bgcolor="' + objBgcolor + '" width="' + objWidth + '" height="' + objHeight + '" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer">');
	document.write('</OBJECT>');
}

function view(what) { 

  var imgwin = window.open("",'WIN','scrollbars=no,status=no,toolbar=no,resizable=1,location=no,menu=no,width=10,height=10'); 

  imgwin.focus(); 
  imgwin.document.open(); 
  imgwin.document.write("<html>\n"); 
  imgwin.document.write("<head>\n"); 
  imgwin.document.write("<title>lafuma</title>\n"); 

  imgwin.document.write("<sc"+"ript>\n"); 
  imgwin.document.write(" function resize() {\n"); 
  imgwin.document.write("   pic = document.il;\n"); 
  imgwin.document.write("   if (eval(pic).height) { \n"); 
  imgwin.document.write("     var name = navigator.appName; \n"); 
  imgwin.document.write("     if (name == 'Microsoft Internet Explorer'){ \n"); 
  imgwin.document.write("       myHeight = eval(pic).height + 37; myWidth = eval(pic).width + 12; \n"); 
  imgwin.document.write("     }else{ \n"); 
  imgwin.document.write("       myHeight = eval(pic).height + 9; myWidth = eval(pic).width; }\n"); 
  imgwin.document.write("     clearTimeout();\n"); 
  imgwin.document.write("     var height  = screen.height;\n"); 
  imgwin.document.write("     var width   = screen.width;\n"); 
  imgwin.document.write("     var leftpos = width / 2 - myWidth / 2;\n"); 
  imgwin.document.write("     var toppos  = height / 2 - myHeight / 2; \n"); 
  imgwin.document.write("     self.moveTo(0, 0);\n"); 
  imgwin.document.write("     self.resizeTo(myWidth, myHeight);\n"); 
  imgwin.document.write("   } else setTimeOut(resize(), 100);\n"); 
  imgwin.document.write(" }\n"); 
  imgwin.document.write("</sc"+"ript>\n"); 

  imgwin.document.write("</head>\n"); 
  imgwin.document.write('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#FFFFFF">\n'); 

  imgwin.document.write("<A HREF='javascript:self.close();'><img border=0 src="+what+" xwidth=100 xheight=9 name=il onload='resize();'></a>\n"); 
  imgwin.document.write("</body>\n"); 
  imgwin.document.close(); 
} 