﻿/// <reference name="MicrosoftAjax.debug.js" />
/// <reference name="MicrosoftAjaxTimer.debug.js" />
/// <reference name="MicrosoftAjaxWebForms.debug.js" />

/// <reference path="jquery-1.2.6-vsdoc.js"/>

Sys.Application.add_load(function()
{
    setTimeout(function()
    {
        $('.AutoFadeout').fadeOut(500);
    }, 5000);
});
   
function openPopupWindow(url, windowName, attributes)
{
	myWindow = window.open(url, windowName, attributes);
	myWindow.focus();
}    