/*******************************************************************************
* Gallery.js
* 
* @package autocon
* @author Preston McMurry (prestonm3@mcmurry.com)
* @version 1.0
* @copyright (C) Copyright 2008 by McMurry, Inc.
*
*******************************************************************************/
function PopupPhoto( strURL, xDim ) {
    yDim = xDim / (4/3);
    
    Params = "resizable=yes,status=no,scrollbars=yes,toolbar=no,menubar=no,modal=no,width=" + xDim + ",height=" + yDim;
    
    window.open(strURL,'',Params);
}

