// JavaScript Document
//GO TO PAGE WHEN DROPDOWN IS CLICKED
function goEx(URL,width,height)
{
	goTo(URL, "_new", height, width);	
	return false;
}
function goTo(URL,target,height,width)
{
 var winProps
 if (target != "_self")
 {
  winProps="toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,height=" +
     ((height==null || height=='') ? 630 : height) + ",width=" + ((width==null || width=='') ? 780 : width);
  NewWin0=this.open(URL,"Win",winProps);
 }
 else
 {
  document.location.href=URL;
 }
}
