function listmore(tab){

    if(document.getElementById("state" + tab).value == "open"){
        document.getElementById("list" + tab).style.display='block';
        document.getElementById("state" + tab).value = "close";
    }else if(document.getElementById("state" + tab).value == "close"){
        document.getElementById("list" + tab).style.display='none';
        document.getElementById("state" + tab).value = "open";
    }
    
}

var newwindow;
function enlarge(url)
{
	newwindow=window.open(url,'name','menubar=0,location=0,toolbar=0,personalbar=0,status=0,scrollbars=1,width=650,height=550');
	if (window.focus) {newwindow.focus()}
}