/*
By: Ivik Injerd | zavaboydesigns@ivitek.com
Copyright 2004 Zavaboy Designs. All rights reserved.
*/

var win = null;
function newWin(url,id,size){
newSize = size.split("x");
set = "height="+newSize[1]+",width="+newSize[0]+",top=100,left=100,scrollbars=no,";
win = window.open(url,id,set);
}

function mOver(what){
what.style.backgroundColor = "#FFFFFF";
}

function mOut(what){
what.style.backgroundColor = "";
}

function expand(what,that){
if (document.getElementById(that).style.display == "block"){
    document.getElementById(that).style.display = "none";
    what.src = "plus.gif";
}else if (document.getElementById(that).style.display == "none"){
    document.getElementById(that).style.display = "block";
    what.src = "minus.gif";
}}