function openWin(page, name, width, height)
	{
		var str = 'width=' + width + ', resizable=yes height=' + height + ', scrollbars=yes, left=10,top=20';
		newWin = window.open(page, name, str);
		if (window.focus) { newWin.focus() }
	}

function doProcessing() {
	   var node_elt1, node_elt2;
       node_elt1 = document.getElementById("submitBtn");
	   node_elt2 = document.getElementById("processing");
	   
	   node_elt1.className = 'thide'; 
       node_elt2.className = 'tshow';
    
}
