﻿function openWin(url, width, height) {
	var popup = window.open(url, "", "width=" + width + ",height=" + height + ",scrollbars=yes");
}

function DisableAndContinue(clickableObj, statusObj) {
	if (clickableObj != null) {
		clickableObj.onClick = "return false";
		/*clickableObj.disabled = true;*/
	}

	if (statusObj != null) {
		statusObj.innerHTML = "Please wait...";
		statusObj.style.color = "#666666";
	}

	return true;
}