function Press()
{
	var strPress;
	strPress = "http://www.pressreleasenetwork.com/pr-2001/january/mainpr452.htm";
	var res=window.open(strPress);
}

function Post(strAction)
{
	document.forms[0].hdnAction.value = strAction; 
	document.forms[0].submit();
}

function Post2()
{
	if (document.forms[1] != null)
	{
		document.forms[1].submit();	
	}
	else
	{
		document.forms[0].hdnAction.value = "DISCOUNT"; 
		document.forms[0].submit();	
	}
}


function PostWithID(strAction, strID)
{
	document.forms[0].hdnAction.value = strAction; 
	document.forms[0].hdnID.value = strID; 
	document.forms[0].submit();
}

function PostWithIDFull(strAction, strField, strID)
{
	document.forms[0].hdnAction.value = strAction; 
	document.forms[0].elements[strField].value = strID; 
	document.forms[0].submit();
}


function SetCombo(strName, strValue)
{
	if (document.forms[0].elements[strName] != null)
	{
		for (var i=0; i<document.forms[0].elements[strName].length; i++) 
		{
			if (document.forms[0].elements[strName].options[i].value==strValue)
			{
				document.forms[0].elements[strName].selectedIndex = i;
				break;
			}
		}	
	}
}

