
function showhideDiv(theItem)
{
	var theItemb = document.getElementById(theItem);
	if (typeof(theItemb) != "undefined")
	{
		if (theItemb.style.display == 'none')
			theItemb.style.display = 'block'
		else
			theItemb.style.display = 'none';
	}
}

function showPayOptions()
{
	var option, arReq
	var form = document.shippingform
	var option=form.PAY_TYPE.options[form.PAY_TYPE.selectedIndex].value
	arReq = option.split(':')
	
	var payponum = document.getElementById('payponum')
	var payccnum = document.getElementById('payccnum')
	var ccdate = document.getElementById('ccdate')
	var payname = document.getElementById('payname')
	
	if (arReq[1] == 'True')
	{	
		if (arReq[0] == 'PO') {
			payponum.style.display = 'block'
			payccnum.style.display = 'none'	
			ccdate.style.display = 'none'
			payname.style.display = 'none'
			}
		else {
			payccnum.style.display = 'block'
			payponum.style.display = 'none'
			showCVV(arReq[0])
			}	
	}
	else {
		payccnum.style.display = 'none'
		payponum.style.display = 'none'
	}	
		
	if (arReq[2] == 'True')
		ccdate.style.display = 'block'
	else
		ccdate.style.display = 'none'
		
	if (arReq[3] == 'True')
		payname.style.display = 'block'
	else
		payname.style.display = 'none'
}
