function ShowItemOnPageFns(val)
{	
	document.getElementById("_hdnShowItemsOnPage").value = parseInt(val);	
	document.getElementById("_showItemsFrom").submit();
	
}

function ShowItemOnPageFnsWithFormNo(val, formNo)
{
	document.getElementById("_hdnShowItemsOnPage_"+formNo).value = parseInt(val);	
	document.getElementById("_showItemsFrom_"+formNo).submit();
}

function ElementOnBlur(id)
{
	if (document.getElementById(id).value=='') 
		document.getElementById(id).value='*';
}
function ElementOnFocus(id)
{
	if (document.getElementById(id).value=='*') 
		document.getElementById(id).value='';
}

function LotTxtOnBlur(id)
{
	if (document.getElementById(id).value=='') 
		document.getElementById(id).value='�';
}
function LotTxtOnFocus(id)
{
	if (document.getElementById(id).value=='�') 
		document.getElementById(id).value='';
}

function ShowMap(vcartNo, LotUId)
{
	//window.open('/map.php?var1='+parseInt(vcartNo)+'&var2='+parseInt(LotUId),'new','width=700,height=600,toolbar=1')
	Dialog.alert({url: "/map.php?var1=" + vcartNo + "&var2=" + LotUId, options: {method: 'get'}}, 
            {className: "alphacube", width:700, okLabel: "Close"});
}