showMe=0;

function show(){
    if (document.getElementById("show_hide").style.display == "block"){
        document.getElementById("show_hide").style.display = "none";
        document.getElementById("plus_minus").style.backgroundImage = "url(/images/plus.gif)";
    }else if (document.getElementById("show_hide").style.display = "none"){
        document.getElementById("show_hide").style.display = "block";
        document.getElementById("plus_minus").style.backgroundImage = "url(/images/minus.gif)";
    }
    
}

function showThis(popPath, width, height){
	var args = "height="+height+",width="+width+",status=no,toolbar=no,menubar=no,location=no";
	window.open(popPath,null,args);
}