//
// common.js
//

// Author: Colin Jaggs
// Date: 6th October 2004
// Description: Common JS functions use throughout the site

// common variables
var popUpWin = false;
var rollOvers = new Array();

// common functions
function closePopups() { if (popUpWin) popUpWin.close(); }
function openPopup(url) { closePopups(); popUpWin = window.open(url, "popupwin", "width=650,height=500,scrollbars=1") }
