// JavaScript Document


function insertFlash(nom,width,height){
var CODE = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\""+width+"\" height=\""+height+"\">";
    CODE+= " <param name=\"movie\" value=\""+nom+"\">";
    CODE+= "<param name=\"quality\" value=\"high\">";
	CODE+= "<embed src=\""+nom+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\"></embed></object>";
document.write(CODE);

}

// SCROLLING DEPUIS UN SWF VERS L'EXPLORER

function pageScrollDown() {
    	window.scrollBy(0,50); // incremente le scroll horizontal et vertical 
}
function pageScrollUp() {
    	window.scrollBy(0,-50); // incremente le scroll horizontal et vertical 
}
function pageGoTo(y) {
    	window.scrollTo(0,y); // incremente le scroll horizontal et vertical 
}