function switch_skin(style)
{
  EcrireCookie('cssfile',style);
  top.location=document.location.href;
}

function switch_language(lang)
{
  EcrireCookie('language2',lang);
  top.location=document.location.href;
}

function EcrireCookie(nom,valeur)
{
	var unedate=new Date();unedate.setFullYear(unedate.getFullYear()+28);
	document.cookie=nom+"="+valeur+";expires=" + unedate.toGMTString() + ";domain=cobraworld.net;path=/";
}

function ViewImageXYT(ifile,ix,iy,ititle) { 
  var win;
  win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=0,toolbar=0,scrollbars=0");
  win.document.open();
  win.document.write("<html><head><title>"+ititle+"&nbsp&nbsp</title>");
  win.document.write("</head><body>");
  win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
  win.document.write("<img src="+ifile+"></div></body></html>");
  win.document.close();
}