function go_others() {
  var tmp = document.ntuclaunchpad.ntuclaunchpaddropdown;
  if (tmp.selectedIndex != 0)
  {
    window.open(tmp[tmp.selectedIndex].value, "");
  }
} 

function shwprt(theurl) {
var windowprops = "location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=Yes" +
",left=" + 480 + ",top=" + 100 + ",width=" + 500 + ",height=" + 600;

var URL = theurl;

popup = window.open(URL,"MenuPopup",windowprops);
}


function bookmark(url, description)
{
netscape="Netscape User's hit CTRL+D to add a bookmark to this site."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}

function submit_frm() 
{
var colflds = "";
var form_field = "";
var form_field = "";
var errs=0;
var frm = document.forms["sendform"]


    for(var i=0; i < frm.length; ++i) 
	{
		form_field = frm.elements[i];
   	 	form_name = form_field.name;
		colflds = colflds  +  form_name +  "|";
	}
	
	frm.holder.value = colflds;
	//alert(colflds);
	if (confirm("I hereby declare that the informations given is correct\nand I agree to submit to this form."))
	errs = 1;
	
	return (errs==1);
	
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

    function getItem(id)
    {
        var itm = false;
        if(document.getElementById)
            itm = document.getElementById(id);
        else if(document.all)
            itm = document.all[id];
        else if(document.layers)
            itm = document.layers[id];

        return itm;
    }

    function toggleItem(id)
    {
        itm = getItem(id);

        if(!itm)
            return false;

        if(itm.style.display == 'none')
            itm.style.display = '';
        else
            itm.style.display = 'none';

        return false;
    }
	