﻿function OpenWindow(winname)
{
    w = window.open(winname,null,'height=500,width=600,status=yes,toolbar=no,menubar=no,location=no');
    w.focus();
}

function ShowThankYou(show)
{
    if (show == 'True')
    {
        w = window.open('PublicPages/Support/ThankYou.aspx',null,'height=400,width=600,status=yes,toolbar=no,menubar=no,location=no');
        w.focus();
        
    }
}