function getURL(){
    if(document.partner.partners.selectedIndex > 0){
        var selectedItem = document.partner.partners.selectedIndex;
        window.open(document.partner.partners.options[selectedItem].value,'_self',
'left=20,top=20,width=760,height=500,toolbar=1,resizable=1');
    }
    
}

function confirmDelete(){
    if(confirm('Are you sure you want to delete this newsletter?\n\nYou can deactive the newsletter to prevent it being displayed\non the live site instead of deleting it.')){
        return true;
    }
    else{
        return false;
    }
}