/* 
  File name:  library
  Created on: 30 January 2003 at 10:08
  Author:     Simon Williams, Paymaster Consulting Ltd. (simon@paymaster.demon.co.uk)

  Description:
    The script library for the site trustmeimadesigner.com.
*/

function changeClass(thing, newClass) {
  thing.className = newClass;
}
var windowReference;
function enlargeImage(thing, newWidth, newHeight) {
    windowReference = window.open(thing.src, "imageWindow", "height=" + (newHeight + 20) + ",width=" + (newWidth + 20) + "location=no,menubar=no,resizeable=no,scrollbars=no,status=no,title=no,top=0,left=0");
}

function resetImage(thing) {
    windowReference.close();
}