// SCMS - Nguyen Tien Si
//coding by Nguyen Tien Si

window.onload = initForm;
window.onunload = function() {};

function initForm()
{
     $('newLocation').selectedIndex = 0;
     $('newLocation').onchange = jumpPage;
}

function jumpPage()
{
     var newLoc = $('newLocation');
     var newPage = newLoc.options[newLoc.selectedIndex].value;

     if (newPage != "") {
        window.location = newPage;
     }
}
function popup(url,width,height)
{
	OpenWin = this.open(url,"_blank", "toolbar=no,menubar=no,location=no,scrollbars=no,status=no,resize=no,resizable=yes,width="+width+",height="+height+",top=100,left=100'");
}
function switchDisplay(id)
	{
	ctrl = document.getElementById(id);
	if (ctrl.style.display == "")
		ctrl.style.display = "none";
	else
		ctrl.style.display = "";
	}