

startList = function() {
if (document.all&&document.getElementById) {
cssdropdownRoot = document.getElementById("cssdropdown");
for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
node = cssdropdownRoot.childNodes[x];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}

function imgwin(image)
{
//alert(image);
new_imgwin = window.open(image +".html", "", "width=576,height=432,resizable=no,menubar=no,directories=no,toolbar=no,location=no");
}

function videowin_low(video)
{
//alert(image);
new_videowin = window.open(video +".html", "", "width=320,height=300,resizable=no,menubar=no,directories=no,toolbar=no,location=no");
}

function videowin_hi(video)
{
//alert(image);
new_videowin = window.open(video +".html", "", "width=640,height=530,resizable=no,menubar=no,directories=no,toolbar=no,location=no");
}


if (window.attachEvent)
window.attachEvent("onload", startList)
else
window.onload=startList;



/*function img(image)
{
	window.open(document.getElementById("IMG").title, "", "width=576,height=432,resizable=no,scrollbars=no,location=no,statut=no");
}*/

/*function win(img) {
msg=window.open("","","height=432,width=576,left=0,top=0");
msg.document.write("<html><title>Awassos</title>");
msg.document.write("<body>");
msg.document.write("<center><img src=img></center>");
msg.document.write("</body></html><p>");
*/