// Support Script (667)
function subAwithBinC(a,b,c)
{

	var i = c.indexOf(a);
	var l = b.length;

	while (i != -1)	{
		c = c.substring(0,i) + b + c.substring(i + a.length,c.length);
  i += l
		i = c.indexOf(a,i);
	}
	return c;

}
function document_onLoad() {

 }
function List2__onChange() {
var v = List2.getSelectedValue();
if (v.length > 1) // one char is a noop
  window.location.href = v;
var v = List2.getSelectedValue();
if (v.length > 1) 
{ 
    Form1.setAction(subAwithBinC(" ", "%20", v));

    // If there is no onSubmithander the return value is null
    // If there is a validation handler it returns true to submit
    // or false to not submit
    Result = Form1.onSubmit();
    if (Result==null || Result==true)
        Form1.submit();
}
 }
function _List2__onChange() { if (List2) return List2.onChange(); }


