function ToggleStyle(sender, newclass)
{
	sender.className = newclass;
}
function LoadImages()
{
	pic1= new Image(9,7); 
	pic1.src="https://www.insuranceagencynetwork.com/images/list-selected.gif"; 
}
function popuppage(pwidth, pheight, presizable, pscrollbars, ptoolbars, purl, pparams)
{
    var presizable;
    var pscrollbars;
    var ptoolbars;
    if (presizable)  resizable = "yes"; else resizable = "no";
    if (pscrollbars) scrollbars = "yes"; else scrollbars = "no";
    if (ptoolbars)   toolbars = "yes";   else toolbars = "no";
	var width=pwidth;
	var height=pheight;
    var middleleft=(screen.width/2)-width/2;
	var middletop=(screen.height/2)-height/2;
	var addparams = "";
	if (pparams != "" && pparams != null)
	{
	    addparams = "?" + pparams;
	}
	var newWind = window.open(purl + addparams ,"_blank",  "resizable="+ resizable +",scrollbars="+ scrollbars +",toolbars="+ toolbars +",width="+width+", height="+height+", left=" + middleleft + ", top=" + middletop + ", alwaysRaised=yes");
}
