<!--
defaultStatus = "Blue Reef Aquarium - the ultimate undersea safari";

function jsPopUp(name,id,id2,attr3) {
	windowName =  name;
	windowLeft = 100;
	windowTop=100;

	switch (windowName) {
		case 'voucher':	// voucher
			windowWidth = 251;
			windowHeight = id;	
			windowTop = 0;
			windowScrollbars = 0;
			windowURL = "index_voucher.htm";
			if (id2 != "") { windowURL += "?" + id2; }
			break;
	}

	windowProps = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + windowScrollbars + ",resizable=0,copyhistory=0,width=" + windowWidth + ",height=" + windowHeight + ",left=" + windowLeft + ",top=" + windowTop;
	window.open(windowURL,windowName,windowProps);				
}
//-->
