document.write("<ul>");
document.write("<li  id='sal1'><a href='#' onClick=\"toggle('salary','sal1')\" title='Click this link to open the salary  database.'>Salary</a></li>");
document.write("<li id='hrly1'><a href='#' onClick=\"toggle('hourly','hrly1')\" title='Click this link to open the hourly database.'>Hourly</a> ( * )</li>");
document.write("<li  id='int1'> <a href='#'  onClick=\"toggle('intrnshp','int1')\">Internship</a></li>");
document.write("<li  id='new1'> <a href='#' onClick=\"toggle('newcg','new1')\">New College Grads</a> </li>");
document.write("<li><a href='#' onClick=javascript:window.open('http://www.chryslercareers.com/Registration.html','mywin','left=20,top=20,width=500,height=600,resizable=yes,scrollbars=yes,toolbar=yes,'); ><font color='#FF0000' >Register with Chrysler</font></a></li>");
document.write("</ul>");

 function toggle2(x){
   var x1 = document.getElementById(x);
    if(x1.style.display == ''){
       x1.style.display = 'none';
	} else {
	  x1.style.display = '';
	} 
 }

