// Rollovers
function imgRollover(img,state){
  document.images[img].src = "./media/images/btn_" + img + "_" + state + ".gif";
}

function openWin(id,url,width,height) {
    var win = new Window(id, {className: "alphacube", title: "", width:width, height:height, zIndex:1000, opacity:1, resizable: true, url: url});
    win.setDestroyOnClose();
	win.showCenter(true);
}