function displayChoice(choice){
 document.getElementById('suggestion_expanded').innerHTML=document.getElementById('suggestion_expanded_'+choice).innerHTML;
 document.getElementById('suggestion_expandedContact').style.display='none';
 document.getElementById('suggestion_expandedMore').innerHTML='';
 document.getElementById('suggestion_expandedContactEnq').value=choice;
}
function closeSuggestion(){
 document.getElementById('suggestion_expanded').innerHTML='';
 document.getElementById('suggestion_expandedContact').style.display='none';
 document.getElementById('suggestion_expandedMore').innerHTML='';
}
function showContact(openClose){
 if(openClose=='open'){
  document.getElementById('suggestion_expandedContact').style.display='block';
 } else {
  document.getElementById('suggestion_expandedContact').style.display='none';
 }
}
function showMoreInfo(section){
 document.getElementById('suggestion_expandedMore').innerHTML=document.getElementById('suggestion_expanded_'+section+'_more').innerHTML;
}
function hideMoreInfo(){
 document.getElementById('suggestion_expandedMore').innerHTML='';
}

/*DISPLAY COLOURS*/
function displayNewImage(color,caption,product,idName){
 document.getElementById('suggestion_expanded_'+idName+'_color').src='img/swatch/'+idName+'/'+product+color+'Big.jpg';
 document.getElementById('suggestion_expanded_'+idName+'_color').alt=color;
 document.getElementById('suggestion_expanded_'+idName+'_caption').innerHTML=caption;
}
function displayChoiceNovabrikColor(color,caption){
 document.getElementById('suggestion_expanded_novabrik_color').src='no image';
 document.getElementById('suggestion_expanded_novabrik_color').alt='Loading...';
 var newImage = new Image();
 newImage.src='img/Novabrik'+color+'Big.jpg';
 newImage.onload = displayNewImage(color,caption,'Novabrik','novabrik');
}
function displayChoiceWetwallColor(color,caption){
 document.getElementById('suggestion_expanded_lamboard_color').src='no image';
 document.getElementById('suggestion_expanded_lamboard_color').alt='Loading...';
 var newImage = new Image();
 newImage.src='img/Wetwall'+color+'Big.jpg';
 newImage.onload = displayNewImage(color,caption,'Wetwall','lamboard');
}
function displayChoiceVinylColor(color,caption){
 document.getElementById('suggestion_expanded_vinyl_color').src='no image';
 document.getElementById('suggestion_expanded_vinyl_color').alt='Loading...';
 var newImage = new Image();
 newImage.src='img/Vinyl'+color+'Big.jpg';
 newImage.onload = displayNewImage(color,caption,'Vinyl','vinyl');
}
