var disclaimer = {
    div: "#disc",
	flashsite: false,
	init: function(isflashsite){
		this.flashsite = isflashsite;
		var doc_height = $(document).height();
		var win_height = $(window).height();
		$(this.div).css('display','block');
		//$('#wrapper').css('visibility','hidden');  //using visiblity as the flash site resets using display:block when hiding popup.
		//$('#wrapper').css('display','none');
		$(this.div).height(doc_height);
		$(this.div + " iframe").height((win_height - 50));
		window.location.href = "#top";
	},
	hide: function(proceed){
		//$('#wrapper').css('visibility','visible');
		//$('#wrapper').css('display','block');
		$(this.div).css('display','none');
		//only redirect if initiated from the HTML site, not from the flash site.
		if(!this.flashsite){  
			window.location.href="/html/careers/";
		}
	}
}
