<!--
function openWin(myurl,myname,w,h,bscroll,tools,resizable){
	monObjDate = new Date();
	myname = myname+''+Math.round(monObjDate.getTime() / 1000);
	NewWindow(myurl, myname, w, h, bscroll, tools,resizable);
}
function NewWindow(myurl,myname,w,h,bscroll,tools,resizable) {
	(resizable==null)?(resizable='yes'):0;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+bscroll+',resizable='+resizable+',toolbar='+tools+'';
	win = window.open(myurl, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
function changeProductImg(img){
    document.getElementById('imgArticle').src = img;
    // document.getElementById('download').href = lien;
}

function changeUrl(url, sCodeFiliale, strServername){
    tagOmniture(sCodeFiliale, strServername, '', 'suberbar:Change your country', 'choose country', 'choose country:'+ url.replace(/\//gi, ""), '');
    self.location.href = url;
}
var status = 'hide'
function showHide(id){
    if(status == 'hide'){
        document.getElementById(id).style.display = 'block';
        status = 'show'
    }else if(status == "show"){
        document.getElementById(id).style.display = 'none';
        status = 'hide'
    }
}
-->