
function ChangeURL(Prod,Reg){
document.location.href="?open&Prod="+escape(Prod)+"&Reg="+escape(Reg);
}

function GO_Prod(){
fieldEntryList=document.prod.Product

if(fieldEntryList.selectedIndex != -1)
	{
		for (var i=0; i < fieldEntryList.options.length; ++i)
		{
		if (fieldEntryList.options[i].selected)
			{		
				Selection = fieldEntryList.options[i].text
			}
		}
	}



fieldEntryList2=document.prod.Region

if(fieldEntryList2.selectedIndex != -1)
	{
		for (var k=0; k < fieldEntryList2.options.length; ++k)
		{
		if (fieldEntryList2.options[k].selected)
			{		
				RegSel = fieldEntryList2.options[k].value
			}
		}
	}



if(Selection != "")
{

Sel = Selection.replace(/\+/,"~plus~")
ChangeURL(Sel,RegSel)

}
}
function GO_Reg()
{
fieldEntryList2=document.prod.Region
if(fieldEntryList2.selectedIndex != -1)
	{
		for (var k=0; k < fieldEntryList2.options.length; ++k)
		{
		if (fieldEntryList2.options[k].selected)
			{		
				RegSel = fieldEntryList2.options[k].value
			}
		}
	}
if(RegSel != "")
{
ChangeURL("",RegSel)
}
}
