
function chekkol() {
	if ((event.keyCode < 48) || (event.keyCode > 57))  event.returnValue = false;
}

function tobin(id,frmname,ObjName){
qObj=document.forms[frmname].elements[ObjName];
var qty=parseInt(qObj.value);
var width = 550;
var height = 350;
var left = (screen.width - width)-10;
detailBinWindow =
window.open('/index.php?p=bin&bin_mode=add&bin_data[id]='+id+'&bin_data[count]='+qty,'DETAIL','resizeable=yes,scrollbars=yes,menubar=no,width='+width+',height='+height+',top=1,left='+left+'');
detailBinWindow.focus();
}

function op_bin(){
var width = 550;
var height = 350;
var left = (screen.width - width)-10;
detailBinWindow=window.open('/index.php?p=bin','DETAIL','resizeable=yes,scrollbars=yes,menubar=no,width='+width+',height='+height+',top=1,left='+left+'');
detailBinWindow.focus(); 
}
function op(id){
var width = 380;
var height =350;

viewBinWindow=window.open('/index.php?p=view&uid='+id,'view','resizeable=yes,scrollbars=yes,menubar=no,width='+width+',height='+height+'');
viewBinWindow.focus(); 
}
