function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}
function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}


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

function makeRemote( ) {
remote =  window.open("","remotewin","width=480,height=500");
remote.location.href = "partners/dealstages.html";
if (remote.opener == null) remote.opener = window;
remote.opener.name = "opener";
}

var value = null;

function open_window(url) { 
window = window.open(url, "window", 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=490,height=490'); 
}

function open_widewindow(url) { 
window = window.open(url, "widewindow", 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=620'); 
}

function open_help(url) { 
help = window.open(url, "help", 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=430,height=360'); 
}

