			var checkobj
			function agreesubmit(el){
					checkobj=el
					if (document.all||document.getElementById){
					for (i=0;i<checkobj.form.length;i++){
					var tempobj=checkobj.form.elements[i]
					if(tempobj.type.toLowerCase()=="submit")
					tempobj.disabled=!checkobj.checked
					}
					}
			}
				
			function defaultagree(el){
					if (!document.all&&!document.getElementById){
					if (window.checkobj&&checkobj.checked)
					return true
					else{
					alert("Silahkan Baca dan Setujui Policy dan Kebijakan Transaksi kami.")
					return false
					}
					}
			}
			
			function popitup(url) {
				usname=document.mosForm.username.value
				cekurl=url+"?usn="+usname
				newwindow=window.open(cekurl,'name','top=200,left=200,height=150,width=250');
				if (window.focus) {newwindow.focus()}
				return false;
			}		
