
	var popupwin;
	function openFormPopup(url, winWidth, winHeight) {
		if (winWidth == null ) winWidth = 600;
		if (winHeight == null ) winHeight = 800;
		popupwin = window.open(url, "infoWin", "height=" + winHeight + ", width=" + winWidth + ", resizable=yes");
		if (window.focus) {popupwin.focus();}
	}

	function getSurvey(){
		change('survey_overlay','hidden');
		sendOmnitureRequest("yes");

		var surveyURL = "https://www-secure.symantec.com/norton/support/survey_form.jsp";
		if(document.domain.indexOf("uat.ges") > -1 || document.domain.indexOf("preview.ges") > -1)
			surveyURL = "http://www-secure-uat.ges.symantec.com/norton/support/survey_form.jsp"; //point to dev server survey
		
		openFormPopup(surveyURL,550,500);
	}

	function cancelSurvey(){
		sendOmnitureRequest("no");
		change('survey_overlay','hidden');
	}

	function sendOmnitureRequest(selected){
		s.pageName= lg+"/"+ct+": hho: support: home: survey_" + selected;					
		var s_code=s.t();
		if(s_code)
			document.write(s_code)
	}
		
	function fixHeights(){
		MatchBlockHeight2('head1','head2','head3');
		setTimeout("longerTimeout2()", 10);
	}			

	function longerTimeout2() {
		MatchBlockHeight('div1','div2','div3'); 
		setTimeout("longerTimeout3()", 10);
	}
	
	function longerTimeout3(){
		MatchBlockHeight2('head_pr_1','head_pr_2','head_pr_3'); 
		setTimeout("longerTimeout4()", 10);
	}
	
	function longerTimeout4() {
		MatchBlockHeight('body_pr_1','body_pr_2','body_pr_3'); 
	}

	function doMouseOverBox(divRef) {		
	   divRef.className='promoboxOver';
	   var head_id = divRef.childNodes[0].id;
	   if (head_id == null) head_id = divRef.childNodes[1].id;  // for Firefox
	   change(head_id, 'subhead_arrowOVR');
	}
			
	function doMouseOutBox(divRef) {
	   divRef.className='promobox';
	   var head_id = divRef.childNodes[0].id;
	   if (head_id == null) head_id = divRef.childNodes[1].id;  // for Firefox
	   change(head_id, 'subhead_arrow');           
	}
