// JavaScript Document
<!--
var collapsed = false;
var popupActive = false;

$(document).ready(function() {
    $(".popupwindow").popupwindow();

	//var formFields = $(':input').not($("[@type=submit]")).not($("[@value=http://]"));
	var formFields = $('.quick_search_terms');
	formFields.focus(function() {
		if (this.value == this.defaultValue) this.value = "";
	});
	formFields.blur(function() {
		if (this.value == "") this.value = this.defaultValue;
	});	

	//addCollapsed();
	function addCollapsed() {


//		$('.club_search').after('<div id="collapsed_bar"><p><a href="#">Click to expand and view your search again</a></p></div>');

//		if(collapsed == false) {
//			$('#collapsed_bar').hide();
//			$('.club_search').show();
//		} else {
//			$('#collapsed_bar').show();
//			$('.club_search').hide();
//		}

//		$('.club_search').append('<div id="collapse"><a href="#"><img src="/styles/images/collapse_arrow_up.gif" width="9" height="8" alt="hide" \/></a></div>');

//		$('#collapse').bind("click", function() {						  
//			
//			if(collapsed == false) {
//				$('.club_search').hide();
//				$('#collapsed_bar').show();
//				collapsed = true;
//				return false;
//			}

// 		});

//		$('#collapsed_bar').bind("click", function() {						  
//			
//			if(collapsed == true) {
//				$('.club_search').show();
//				$('#collapsed_bar').hide();
//				collapsed = false;
//				return false;
//			}

// 		});

//	$('.join_now').bind("click", function() {
//			
//			$('.club_search').hide();
//			$('#collapsed_bar').show();
//			collapsed = true;

//			if(!popupActive) {
//				var width = $(window).width();
//				var height = Math.max( $(document).height(), $(window).height() );
//		
//				var centerX = $(window).width() / 2;
//				var panelX = Math.floor(centerX - 259);
//				$('BODY').append('<div id="blocker" style="width:'+ width + 'px;height:' + height + 'px;"><div id="panel" style="left:' + panelX + 'px;"><div class="p_header"><a href="#" onclick="javascript:closePopup();return false;">Close X</a></div><div class="p_content"><p>The buy online facility is only open to Norwich Union customers. If you are one of our customers please enter your <em>Unique identifier information</em> below.</p><form action="#" method="post"><input type="text" id="identifier_number" name="identifier_number" maxlength="255" /><input type="image" src="/styles/images/btn_go.gif" width="47" height="21" alt="Go&gt;" /></form><p>If you would like more information about this service please contact us on 0000 000 0000.</p></div></div></div>');
//				popupActive = true;
//			}
//			return false;
// 		});

	}

        $('#quick_search_results').hide();
        //$('#quick_search_results').css("height:0").css("overflow:hidden");
        
		$('.qs_btn').bind("click", function() {
		    $('#content > h1').text('Your Nearest Health and Fitness Clubs');
		    $('#ctl00_ContentPlaceHolderCenter_QuickSearch_UpdatePanel1').css("background-image", "url(styles/images/bg_quick_search_top.gif)");
		    $('#quick_search_results').show();
            //$("#quick_search_results").animate({ height: "365" }, 500);
 		});
    
});

function closePopup() {
	var popup = document.getElementById('blocker');
	popup.parentNode.removeChild(popup);
	//popup.style.display="none";
	popupActive = false;
}

function newWindow(theUrl){
	window.open(theUrl,"_blank","toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1024,height=650");
}

function newWindowPop(theUrl){
	window.open(theUrl,"_blank","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600");
}
//-->
