/***** USED TO SPAWN POPUPS *****/
// LIGHT WINDOW

function popSend() {
	if (!checkForLightWindow()) return;
	var w = 482;
	var h = 342;
	myLightWindow.activateWindow({href:"send.html", width:w, height:h, title:""});
}

function closeWin() {
	myLightWindow.deactivate();
}

function checkForLightWindow() {
	if (myLightWindow==null) {
		alert("Please wait for the page to finish loading, then try again.");
		return false;
	} else {
		return true;
	}
}


