<!-- 


/* Close a popup window and reload the page below (useful for edit/listing scripts) */


function closeit() {
	window.opener.location.reload();
	window.self.close();
}




/* Macromedia's standard popup */

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}






/* This bit does the help system 											*/ 	
/* Requires that each row have an id=help{num} where {num} is an incremented number 	*/ 
/* Each row should also have a CSS which sets "display: none" 					*/
    
    
    var supported = (document.getElementById || document.all); 

    if (supported) 
    { 

//       document.write("<STYLE TYPE='text/css'>"); 
//       document.write(".para {display: none}"); 
//       document.write("</STYLE>"); 
     
        var max = 99; 
        var shown = new Array(); 
        for (var i=1;i<=max;i++) 
        { 
            // shown[i+1] = false; 
			shown[i] = false;
        } 
     
    } 
     
    function blocking(i) 
    { 
        if (!supported) 
        { 
            alert('This link does not work in your browser.'); 
            return; 
        } 
        shown[i] = (shown[i]) ? false : true; 
        current = (shown[i]) ? 'block' : 'none'; 
        if (document.getElementById) 
        { 
            document.getElementById('help'+i).style.display = current; 
        } 
        else if (document.all) 
        { 
            document.all['help'+i].style.display = current; 
        } 
    } 


/* End of help system */ 


// -->