/*
 * Default library for javascript functions
 */

function openWhereWeWork(item)
{
    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;

    var xOffset = (xMax - 350)/2, yOffset = (yMax - 400)/2;

	window.open('where.php#'+item,'where_pop','width=350,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top='+yOffset+',left='+xOffset+'');
}