﻿function NCSLOpenWindow(tablocation, sender)
{
    var newWin = window.open(tablocation+'?NCSLRef='+sender,'', 'width=600,height=550,toolbar=no,location=no,menubar=no,scrollbars=no');
    newWin.focus();
    
}
function NCSLIPLogOut()
{
 __doPostBack('dnn$dnnREGISTER$cmdRegister','')
 window.location = "https://www.ncsl.org/AccountRegistration/tabid/12402/Default.aspx";
   
}

function OpenTab(tabLocation, type)
{
//type 1 pulls up program staff, type 2 pulls up the email form
var location = '';
    if (type==1)
    {
    location = 'http://ecom.ncsl.org/legis/ncsl/staffprg.cfm?programid=' + tabLocation
    }
    else if(type==2)
    {
    location = 'http://www.ncsl.org/tabid/18538/default.aspx?ct=' + tabLocation
    }
    else if(type==3)
    {
    location = 'http://www.ncsl.org/tabid/18538/default.aspx?st=' + tabLocation
    }
    else if (type == 4) {

        location = 'http://www.ncsl.org/tabid/18538/default.aspx?mcid=' + tabLocation
    }
    var newWin = window.open(location,'', 'width=800,height=620,toolbar=no,location=no,menubar=no,scrollbars=yes');
    newWin.focus();
}

