function glow_row(element)
{
        element.style.backgroundColor = "#6282B5";
        element.style.color = "#EFF8FF";
}

function remove_glow(element)
{
        element.style.backgroundColor = "#EFF8FF";
        element.style.color = "#6282B5";
}

function redirect_me(url)
{
        window.location=url;
}

function confirm_url(url)
{
        var truthBeTold = window.confirm("Delete selected item?");
        if (truthBeTold)
        {
                   window.location=url;
        }
}

function openWin(img_name)
{
    newWindow=window.open('','newWin','toolbar=no,width=500,height=500');
    newWindow.document.write('<html><head><title><\/title><\/head><body leftmargin="1" rightmargin="1" bottommargin="1" topmargin="1"><center><img src="imgs/products/'+img_name+'" border="1" align="absmiddle"><\/center><\/body><\/html>');
    newWindow.document.close();
        newWindow.focus();

}

function view_poll()
{
    pollWin=window.open('index.php?action=view_poll_results','pollWin','toolbar=no,width=210,height=350');
    pollWin.focus();

}

function Img_glow( obj )
{
        obj.style.filter = "Alpha(opacity=80)";
}

function IMg_remove_glow( obj )
{
        obj.style.filter = "";
}