<!--// hide from browsers that do not know JavaScript
function leapto(form){
   var myindex=form.dest.selectedIndex;
   var indval=form.dest.options[myindex].value;
   if((indval=='/') || (indval=='')){
    alert("Please select a project !");
    return false;
   }
   else{
   parent.location=indval;
   return true;
   }
}

function sendpage(){
var w=400;
var h=250;
var ft=(document.URL);
if((navigator.appName=="Netscape") && (navigator.appVersion.replace(/ \(.+/i,"")=="5.0")){
h=h+150;
}
window.open('recomm.php?id='+ft,'displayWindow','resizable=no,scrollbars=no,width='+w+',height='+h+',top=120,left=200');
return true;
}


function gotoURL()
{
self.name="Cloud9_main";
 if(document.URL.indexOf('?')>0){
 window.open(document.URL+"&print=true",'','location=no,menubar=yes,scrollbars=yes');	
document.location=document.URL+"&print=true";
}
 else{
 window.open(document.URL+"?print=true",'','location=no,menubar=yes,scrollbars=yes');
document.location=document.URL+"?print=true";
}
 //return "'" + document.URL+"?print=true'";	
}

//-->