function _openWindow(theURL,winName,features) 
{ //v2.0
  window.open(theURL,winName,features);
}

function popup(url,width,height)
{
	var winTop = (screen.height / 2) - height/2;
	var winLeft = (screen.width / 2) - width/2;
	var windowFeatures = "width="+ width +",height="+ height +",";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop + ",";
	windowFeatures = windowFeatures + "toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no,margin=1mm";
	myWindow = window.open(url,"popup",windowFeatures);
	myWindow.document.write('<html><head><\/head><body topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0"><img src="'+url+'"><\/body><\/html>');
	myWindow.focus();
	return false;
}

function SetRadioValue(RadioButton, Value)
{
  for(var i = 0; i < RadioButton.length; i++)
    if(RadioButton[i].value == Value)
    {
      RadioButton[i].checked = true;
      break;
    }
  return false;
}

