// JavaScript Document

// This is for the description popup on site_plan.htm
function showDescriptionPopUp(filename, width, height)
{    
    window.open( filename, "popDesc", 
    "status = 1, height = " + height + ", width = " + width + ", resizable = 0, location=0, menubar=0, directories=0 " )
}

function showPagePopUp(filename)
{   
    window.open( filename, "PopPage", 
    "status = 1,  resizable = 1, location=0, menubar=0, directories=0, scrollbars=1 " )
}
