<!--

function  validateFeedback(frm)
{
  validValue=true;
  formObj=frm;
  res=false;
  msg=" Including today's visit, how often do you visit the GSK website?";
 for(i=0; i<formObj.how_often.length;i++) 
 	if(formObj.how_often[i].checked){
		res=true; break;
	}
 if(!res){
 	alert( msg); 
	formObj.how_often[0].focus(); 
	return false; 	
} 

res2=false;
 msg2="How did you find the GSK website today?";
 for(i=0; i<formObj.found_by.length;i++) 
 	if(formObj.found_by[i].checked){
		res2=true; break;
	}
 if(!res2){
 	alert( msg2); 
	formObj.found_by[0].focus(); 
	return false; 	
} 


res3=false;
 msg3="Which of the following best describes you on your visit today?";
 for(i=0; i<formObj.profession.length;i++) 
 	if(formObj.profession[i].checked){
		res3=true; break;
	}
 if(!res3){
 	alert( msg3); 
	formObj.profession[0].focus(); 
	return false; 	
} 



if(!(formObj.reason1.checked) && !(formObj.reason2.checked) && !(formObj.reason3.checked) && !(formObj.reason4.checked) && !(formObj.reason5.checked)&& !(formObj.reason6.checked)&& !(formObj.reason7.checked)&& !(formObj.reason8.checked)){
		alert("What are your main reasons for visiting the site today?");
    	formObj.reason1.focus();
		return false; 
	}
	
if((formObj.reason1.checked) && !(formObj.subreason11.checked) && !(formObj.subreason12.checked) && !(formObj.subreason13.checked) && !(formObj.subreason14.checked)&& !(formObj.subreason15.checked)&& !(formObj.subreason16.checked)){
		alert("What type of product information were you looking for?");
    	formObj.reason1.focus();
		return false; 
	}	
	
	
if((formObj.reason2.checked) && !(formObj.subreason21.checked) && !(formObj.subreason22.checked) && !(formObj.subreason23.checked) && !(formObj.subreason24.checked)){
		alert("What type of health information were you looking for?");
    	formObj.reason2.focus();
		return false; 
	}		

if((formObj.reason3.checked) && !(formObj.subreason31.checked) && !(formObj.subreason32.checked) && !(formObj.subreason33.checked) && !(formObj.subreason34.checked)&& !(formObj.subreason35.checked)&& !(formObj.subreason36.checked)){
		alert("What type of company information were you looking for?");
    	formObj.reason3.focus();
		return false; 
	}	

	
if((formObj.reason4.checked) && !(formObj.subreason41.checked) && !(formObj.subreason42.checked) && !(formObj.subreason43.checked) && !(formObj.subreason44.checked)&& !(formObj.subreason45.checked)&& !(formObj.subreason46.checked) && !(formObj.subreason47.checked) && !(formObj.subreason48.checked)){
		alert("What type of news or news topics of interest were you looking for?");
    	formObj.reason4.focus();
		return false; 
	}		
	
if((formObj.reason5.checked) && !(formObj.subreason51.checked) && !(formObj.subreason52.checked) && !(formObj.subreason53.checked) && !(formObj.subreason54.checked)&& !(formObj.subreason55.checked)&& !(formObj.subreason56.checked)){
		alert("What type of investor information were you looking for?");
    	formObj.reason5.focus();
		return false; 
	}		
	
if((formObj.reason6.checked) && !(formObj.subreason61.checked) && !(formObj.subreason62.checked) && !(formObj.subreason63.checked) && !(formObj.subreason64.checked)){
		alert("What type of media information were you looking for?");
    	formObj.reason6.focus();
		return false; 
	}		
	
if((formObj.reason7.checked) && !(formObj.subreason71.checked) && !(formObj.subreason72.checked) && !(formObj.subreason73.checked) && !(formObj.subreason74.checked)&& !(formObj.subreason75.checked)){
		alert("What type of careers information were you looking for?");
    	formObj.reason7.focus();
		return false; 
	}				
	
res4=false;
 msg4="Overall, how satisfied are you with the site?";
 for(i=0; i<formObj.satisfaction.length;i++) 
 	if(formObj.satisfaction[i].checked){
		res4=true; break;
	}
 if(!res4){
 	alert( msg4); 
	formObj.satisfaction[0].focus(); 
	return false; 	
} 	


if(formObj.region.selectedIndex!="1" && formObj.region.selectedIndex=="0")
  {
	alert("From which region are you visiting our site?");
	formObj.region.focus();
	return (false);
  }   
	
}

function swapsIt(show)
{
    if (show.style.display == "none")
    {
        show.style.display = "";
    }
    else
    {
        show.style.display = "none";
    }
}
//legacy script
function DW(dwURL) {
popupWin = window.open(dwURL, 'DW', 'scrollbars,resizable=yes,width=517,height=400,left=25,top=25');
window.top.name = 'opener';
}
//end
//-->