﻿// opens a url in a new window with the specified options
function openNonSecure(href){
    window.open(href.replace('https', 'http'), "_blank", "resizable=1,width=800,height=600,scrollbars=1");            
    return false;
}

// Notify ScriptManager that this is the end of the script.
if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();