function JumpTo(SelBox) {
  URL = SelBox.options[SelBox.selectedIndex].value;
  if (URL.length > 0 && URL != "#") {
    parent.location.href = URL;
  }
}

function JumpToTarget(SelBox, Target) {
  URL = SelBox.options[SelBox.selectedIndex].value;
  if (URL.length > 0 && URL != "#") {
    parent.frames[Target].location.href = URL;
  }
}

var PopWin = null;

function GMM_Popup(URL, WinX, WinY, WinWidth, WinHeight, WinFeatures)
{	ScreenWidth = screen.availWidth;
	ScreenHeight = screen.availHeight;

	if(WinWidth.toString().indexOf("%")>-1)
	{	Percent = parseInt(WinWidth);
		WinWidth = parseInt(Math.round((ScreenWidth / 100) * Percent));
	}

	if(WinHeight.toString().indexOf("%")>-1)
	{	Percent = parseInt(WinHeight);
		WinHeight = parseInt(Math.round((ScreenHeight / 100) * Percent));
	}

	if(WinX.toString().indexOf("%")>-1)
   	{	Percent = parseInt(WinX);
		WinX = parseInt(Math.round((ScreenWidth / 100) * Percent));
		WinX -= parseInt(WinWidth / 2);
	}

   	if(WinY.toString().indexOf("%")>-1)
	{	Percent = parseInt(WinY);
		WinY = parseInt(Math.round((ScreenHeight / 100) * Percent));
		WinY -= parseInt(WinHeight / 2);
	}

	if(PopWin && !PopWin.closed)
	{	PopWin.close();
	}
	PopWin = window.open(URL,"PopWin","innerWidth="+WinWidth+",innerHeight="+WinHeight+",width="+WinWidth+",height="+WinHeight+","+WinFeatures);
	PopWin.moveTo(WinX, WinY);
	PopWin.focus();
}