window.onload = initPage;

function initPage() {
  externalLinks();                                                
  if(document.getElementById('manufacturer') && document.getElementById('manufacturer').value != null) {
    document.getElementById('order_by').onchange = order_by_man;    
  }
  if(document.getElementById('manufacturer') && document.getElementById('manufacturer').value == null){
    document.getElementById('order_by').onchange = order_by_normal;    
  }
}

function image_popup(image) {
  var image = image;
  var newLink = image.replace("main", "large");
  window.open(newLink,"","width=1024,height=768,location,menubar");
}

function externalLinks() { 
  if (!document.getElementsByTagName) return; 
  var anchors = document.getElementsByTagName("a"); 
  for (var i=0; i<anchors.length; i++) { 
    var anchor = anchors[i]; 
    if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external" || anchor.getAttribute("rel") == "external nofollow" ) 
      anchor.target = "_blank"; 
  } 
}

function order_by_normal() {  
  var section = document.getElementById('section').value;
  window.location = 'index.php?view=section&section=' + section + '&order=' + this.value; return true;
}

function order_by_man() {
  var section = document.getElementById('section').value;
  var manufacturer = document.getElementById('manufacturer').value;
  window.location = 'index.php?view=section&section=' + section + '&manufacturer=' + manufacturer +'&order=' + this.value; return true;
}

function display_flash(size) {
  if(size == 'small') {
    if(window.location.pathname.indexOf('dubai') != -1) {
      document.write('<object type="application/x-shockwave-flash" data="../flash/header_banner.swf" width="990" height="193"><param name="movie" value="../flash/header_banner.swf" /></object>');
    } else {
      document.write('<object type="application/x-shockwave-flash" data="flash/header_banner.swf" width="990" height="193"><param name="movie" value="flash/header_banner.swf" /></object>');
    }
  } else if(size == 'large') {
    if(window.location.pathname.indexOf('dubai') != -1) {
      document.write('<object type="application/x-shockwave-flash" data="../flash/home_banner.swf" width="990" height="306"><param name="movie" value="../flash/home_banner.swf" /></object>');
    } else {
      document.write('<object type="application/x-shockwave-flash" data="flash/home_banner.swf" width="990" height="306"><param name="movie" value="flash/home_banner.swf" /></object>');
    }
  } else {
    if(window.location.pathname.indexOf('dubai') != -1) {
      document.write('<object type="application/x-shockwave-flash" data="../flash/right-cta.swf" width="184" height="125"><param name="movie" value="../flash/right-cta.swf" /></object>');
    } else {
      document.write('<object type="application/x-shockwave-flash" data="flash/right-cta.swf" width="184" height="125"><param name="movie" value="flash/right-cta.swf" /></object>');
    }
  }
}

function toggle(id) {
  
  var testimonial;

  testimonial = document.getElementById('testimonial_'+id+'_short').style.display;

  if(testimonial == 'none') {
    document.getElementById('testimonial_'+id+'_short').style.display = 'block';
    document.getElementById('testimonial_'+id+'_full').style.display = 'none';
  } else {
    document.getElementById('testimonial_'+id+'_short').style.display = 'none';
    document.getElementById('testimonial_'+id+'_full').style.display = 'block';
  }
}