function sRedirURL(ddlChoice)
{
	var sChoice;
	sChoice=document.getElementById(ddlChoice).options[document.getElementById(ddlChoice).selectedIndex].value;
	newwindow(sChoice);
	return false;

}
function newwindow(sTgtUrl)
{
  window.open(sTgtUrl,'_blank');
  return false;
}
