function goto(url)	{
window.location = url;
return false;
}

function popup(url)	{
pops = window.open("http://broker.bcbsaz.com/bmw/index.asp?broker=03268","pops","status=0,toolbar=0,location=0,scrollbars=0,height=200,width=200");
setTimeout("pop2('"+url+"')",1000);
//pops.onfocus="pops.close();";
}

function pop2(url)	{
pops.close();
window.location=url;
}

