function showTos(){
	var winpop=window.open("tos.html","mywin","width=800,height=600")
	winpop.focus();
}

/*function showTos(topage){
	var winpop=window.open("tos.asp?page="+topage,"mywin","width=800,height=600")
	winpop.focus();
} */

function EnableFileUp(optVal, fc) {
    var ele = document.getElementById(fc);
    if (ele) {
        if (optVal == "Yes") {
            ele.disabled = false;
            ele.style.display = '';
        }
        else {
            ele.disabled = true;
            ele.style.display = 'none';
        }
    }
}

function goToPlan(topage){
	var winpop=window.open("tos.asp?page="+topage,"mywin","width=800,height=600")
	winpop.focus();
}

function openBlank(page) {
   mywin= window.open('about:blank');
   mywin.location=page;
}

