function DatePopup(form, field){
	dateWin=window.open('date.php?field='+field+'&form='+form,'_datepicker','width=250,height=200,left=' + ((screen.width-250)/2) + ',top=' + ((screen.height-200)/2) + ',toolbar=no,location=no,status=no,scrollbars=no,resizable=no,menubar=no,dependent=yes');
	dateWin.focus()
}


function Issuers(){
	document.mainFrm.doc_issuer.value = "";
	document.mainFrm.doc_issuer_id.value = "";
	_Win=window.open('issuers.php','_datepicker','width=600,height=350,left=' + ((screen.width-600)/2) + ',top=' + ((screen.height-350)/2) + ',toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,menu=no,dependent=yes');
	_Win.focus();
}



function LegalTypes(){
	_Win=window.open('legal_types.php','_datepicker','width=600,height=350,left=' + ((screen.width-600)/2) + ',top=' + ((screen.height-350)/2) + ',toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,menu=no,dependent=yes');
	_Win.focus();
}


function setOpacity(value, _w) {
	var Obj = document.getElementById("_bar");
	Obj.style.opacity = value/10;
	Obj.style.filter = 'alpha(opacity=' + value*10 + ')';
	Obj.style.width = _w+"px";
}


function setOpacity2(value, _w, id) {
	var Obj = document.getElementById("_bar"+id+"");
	Obj.style.opacity = value/10;
	Obj.style.filter = 'alpha(opacity=' + value*10 + ')';
	Obj.style.width = _w+"px";
}