
function open_image (project, id) {
  window.open('http://skyline.popcorndev.co.uk/perl/image_viewer.pl?project=' + project + '&id=' + id,
              'image_' + project + '_' + id,
              "toolbar=no, location=no, menubar=no, scrollbars=no, " +
              "resizable=no, width=" + 50 + ", height=" + 50
             );
}

// popup functions
function open_popup (ref, url, width, height, scroll, resizable) {
  window.open(url,
              ref,
              "menubar=no, " +
              "toolbar=no, " +
              "status=no, " +
              "location=no" + 
              ((width) ? (", width=" + width) : "") + 
              ((height) ? (", height=" + height) : "") +
              ((scroll) ? ", scrollbars=yes " : ", scrollbars=no") +
              ((resizable) ? ", resizable=yes " : ", resizable=no") 
             );
}

var quotes = [
              ['The standard of work has been high and your attention to detail more than expected','Education and Training Director, Fire Protection Association'],
              ['Skyline maintain a refreshing \'can do\' approach to projects and to date have not failed to complete the required scopes to programme','Director, Jones Lang LaSalle'],
              ['A friendly customer focused team who delivered on time, to the required standard and to budget','Business Services Manager, The Audit Commission'],
              ['The quality of work that was achieved by Skyline was excellent. We were very pleased with the whole project','Dickson Minto'],
              ['The innovative and stylish environment created by Skyline\'s design team has had a very positive effect on the way that visitor\'s perceive our business','Chairman, Energy provider']
             ];

function fill_quote () {
  var quote = Math.floor(Math.random() * quotes.length);

  document.getElementById('quote-body').innerHTML   = quotes[quote][0];
  document.getElementById('quote-person').innerHTML = quotes[quote][1];
}