﻿function disableclsu (what) {
	what = document.getElementById(what);
	what.disabled = true;
//	what.value="Please Wait ...";
}

function PopUp(url, name, width, height, scrollbars) {
	window.open(url, name, 'width=' + width + ',height=' + height + ',toolbar=no,location=no,menubar=no,status=no,resizable=no,scrollbars=' + scrollbars + '');
}
