function selectProductionPopup(ptyoeid,callbackMethod) { if( !callbackMethod ) callbackMethod = "selectProductPostAction"; var div = document.getElementById("selectProductionDiv"); if( !div ) { div = document.createElement( "div" ); div.id = "selectProductionDiv"; div.style.position="absolute"; div.style.zIndex = "9"; div.style.background="#000000"; div.style.left = 0; div.style.top = 0; div.style.width = window.screen.availWidth + "px"; div.style.height = document.body.scrollHeight + "px"; div.className = "opacity"; document.body.appendChild(div); $("#selectProductionDiv").click(function(){ $("#selectProductionDiv").hide(); }); } showObj("selectProductionDiv",true); var swidth = window.screen.availWidth - 100; var sheight = window.screen.availHeight - 300; var scrollTop = document.body.scrollTop; if(scrollTop == 0) scrollTop = document.documentElement.scrollTop; scrollTop += 50; div.innerHTML = "
"; } function refreshProductDesc(id,descId) { var productionId = $("#" + id).val(); if (isNaN(productionId)) { return; } $("#" + descId).html( "loading..." ); PublicAjaxHelper.getProduction(productionId, function(data) { if (data) { if (!data.title) { data.title = data.code; } var desc = data.title + " + USD $" + setPrecsion2(data.money) + ""; $("#" + descId).html( desc + " " ); } else { $("#" + descId).html(""); } }); } function closeProductionPopup() { showObj("selectProductionDiv", false); }