// JavaScript Document
function openWindow(width, height, location) {
	var left = Math.floor((screen.width - width) / 2);
	var top = Math.floor((screen.height - height) / 2);
	var options='width='+width+',height='+height+',left='+left+',top='+top+',status=no,scrollbars=yes';	
	var popupwin = window.open(location,'window',options);
}

function processing (id, text) {
	upl = document.getElementById(id);
	upl.disabled = true;
	upl.value=text;
}