<!--

function OpenPopup(Url,NameP,PWid,Phei) {
		var features = 
			'width='        + PWid +
			',height='      + Phei +
			',top=200' +
			',left=500' +
			',directories=o' +
			',location=o' +
			',menubar=o'  +
			',scrollbars=o' +
			',status=0' +
			',toolbar=o' +
			',Resizable=o';
		window.open(Url,"P"+NameP,features);
	}
	


function doPostBack(myObj, myVal) {
		var theform;
		var iAppMi = window.navigator.appName.toLowerCase().indexOf("microsoft");
		
		if (iAppMi > -1) {
			theform = document.Form1;
		}
		else {
			theform = document.forms["Form1"];
		}
		
		if(myObj=="SCRRate"){
			if (iAppMi > -1) {
				myVal = document.all["SCRRate"].value;
			}else {
				myVal = window.document.getElementById["SCRRate"].value;
			}
		}
		
		theform.MyObject.value = myObj; //eventTarget.split("$").join(":");
		theform.MyValue.value = myVal;
		theform.submit();
	}
//-->
