var x;
			
			function showDisclaimerFlash(a) {
			x = a;
			
			/* ADJUST THE CONTENT WITH THE BACKGROUND OVERLAY SIZE */
				document.body.style.height='100%';

				if (window.innerHeight && window.scrollMaxY) {
					xScroll = document.body.scrollWidth;
					yScroll = window.innerHeight + window.scrollMaxY;
				} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
					xScroll = document.body.scrollWidth;
					yScroll = document.body.scrollHeight;
				} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
					xScroll = document.body.offsetWidth;
					yScroll = document.body.offsetHeight;
				}
				
				document.getElementById('disclaimerbase').style.height= yScroll + "px";
				document.getElementById('disclaimerbase').style.display="block";
				document.getElementById('disclaimerflash').style.display="block";
				
			}
			
			function hideDisclaimer(){
				document.body.style.height='';
				document.getElementById('disclaimerflash').style.display="none";
				document.getElementById('disclaimerbase').style.display="none";
			}
			
			var openHeight="100px";
			var closeHeight="100px";			



function createPopUp (URL, Width, Height) {

var left = (screen.width - Width)/2;
var top = 5;
 
var Parameters = "location=0"; 
	Parameters += ",toolbar=0"; 
	Parameters += ",menubar=0";
	Parameters += ",status=0";
	Parameters += ",scrollbars=0";
	Parameters += ",resizable=1";
	Parameters += ",top=" + top;
	Parameters += ",left=" + left;
	Parameters += ",width=" + Width + 'px';
	Parameters += ",height=" + Height+ 'px';
	Parameters = String(Parameters);
	
	URL = String(URL);
	
	var myWindow = window.open(URL, Parameters);
}

