function pop(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function warn(x)
{
	//var msg ="You are about to exit the My Medicare Matters website. \n\nDo you wish to continue?";
	var lnk;
	lnk = x.getAttribute('href');
	//	if (confirm(msg)) 
			window.open(lnk,'new');
		//else
		//	return false;
}

function change(id, newClass) {
	identity=document.getElementById(id);
	identity.className=newClass;
}