/* for drop down*/
function pause(box) {
	      val = box.options[box.selectedIndex].value;
		  if (val==""){
			  
          window.open ("",'_top');
        }else
	{
	window.open (val,'_top');
	}
}

/* for image blowup*/
function openchild(sPicURL) { 
	var turl = "/popup.html?"+sPicURL;
	window.open(turl, "one", 'toolbar=no,location=no,directories=no,statusbar=no,scrollbars=no,menubar=no,resizable=no,'); 
   }

/* for toggle dropdown*/
function toggleSource( id )
        {
          var elem
          var link

          if( document.getElementById )
          {
            elem = document.getElementById( id )
            link = document.getElementById( "l_" + id )
          }
          else if ( document.all )
          {
            elem = eval( "document.all." + id )
            link = eval( "document.all.l_" + id )
          }
          else
					{
								return false;
}
          if( elem.style.display == "block" )
          {
           elem.style.display = "none"
           link.innerHTML = 'Expand<img src="/gifs/red-arrow-down.gif" border="0" align="absmiddle" width="11" height="9" />'
          }
          else
          {
           elem.style.display = "block"
           link.innerHTML = 'Collapse<img src="/gifs/red-arrow-up.gif" border="0" align="absmiddle" width="11" height="9" />'
		      }
        }
