function buttonOpenPopUpRecord(asCol, asPid) {
	//alert(document.getElementById(asCol).value);
	liIndex = document.getElementById(asCol).value.indexOf(':');
	tablePK = document.getElementById(asCol).value.substring(0,liIndex);
	recordPK = document.getElementById(asCol).value.substring(liIndex+1);
	if (tablePK != 0 && recordPK != 0) {
		var lsURL = '/jamm/web/manag/listing/popUp_content_form.jsp?tr='+tablePK
					+'&c='+asCol+'&p='+asPid+'&act=upd&id='+recordPK
					+'&t=WEB_PAG_DATA';
		//alert(lsURL);
		buttonOpenPopUp(lsURL,'content',800,500,1,0,0);
	} else {
		//alert("no record selected");
	}
}

