	function doNothing() {

	}
	
	function drt(RemainingTime) {
		if (document.getElementById) {
			//dom = true
			if (top.frames[1].frames[0].document.getElementById('RemainingTime') != null) {
				top.frames[1].frames[0].document.getElementById('RemainingTime').innerHTML = RemainingTime;
			}
		} else {
			if (document.all) {
				//ie = true
				if (top.frames[1].frames[0].document.all['RemainingTime'] != null) {
					top.frames[1].frames[0].document.all['RemainingTime'].innerHTML = RemainingTime;
					}
			} 
		}
	}
	
	function printPage() {
		top.frames[1].frames[1].focus();
		top.frames[1].frames[1].print();
		top.frames[1].frames[1].location.href = "print_wait.php";
	}