/*-----------------------------------------------------------------------------
| functions.js
-------------------------------------------------------------------------------
|                                       Created by Jonathan Smit, 23 Nov 2003
|                                       Copyright LazyAnt Interactive
|                                       Client: Two Oaks Lynnwood
| Description:
| This file contains all the javascript functions used by the Two Oaks website
-----------------------------------------------------------------------------*/

function launchWindow( windowURL, offsetX, offsetY, width, height )
{
    var windowFeatures;
    
    windowFeatures = "left=" +offsetX+ ",screenX=" +offsetX+ ",top=" +offsetY+ ",screenY=" +offsetY+ ",width=" +width+ ",height=" +height;

    window.open( windowURL, 'LargeImage', windowFeatures );
}


