function redirect(page)
{
    window.location.href = page
}

function open_window(page,params)
{
    window.open(page,"popup",params)
}

function detect_flash_redirect(redirect_page)
{
	if( !document.flashDetected ) 
	{
		redirect(redirect_page)
	}
}

/* More Images Popup */
function swap_image(mainID,photo)
{
    var img_main = document.getElementById(mainID);
   
   img_main.src = photo; 
}

function highlight_border(cell)
{
    var cell = document.getElementById(cell);
    cell.style.border = "solid 1px #cccccc";
}

function unhighlight_border(cell)
{
        var cell = document.getElementById(cell);
        cell.style.border = "solid 1px #ffffff";
}
