window.onload = function()
{
	initOrderButton();
}

function initOrderButton()
{
	var loBtn = document.getElementById("cmd_OrderNow");
	if(loBtn != null)
	{
		loBtn.onclick = function()
		{
			this.value= "Processing order...";
			this.onclick = function()
			{
				return false;
			}
		}
	}
}

function pop(url, width, height)
{
	window.open(url,'','width='+width+', height='+height+', menubar=no, status=no, location=no, toolbar=no, scrollbars=no, resizable=no', false);
}

function poppage(url, width, height)
{
	window.open(url,'','width='+width+', height='+height+', menubar=no, status=no, location=no, toolbar=no, scrollbars=yes, resizable=yes', false);
}

function fOpenClose(tcName)
{
	var o = document.getElementById(tcName);
	if(! o)
		return;
	o.style.display = (o.style.display!='block'?'block':'none');
}