/* Begin Popup Window Script */function openWindow (URL, winHeight, winWidth, parameters) {	xPos = screen.width/2 - winWidth/2;	yPos = screen.height/2 - winHeight/2;		window.open(URL,'','height='+winHeight+',width='+winWidth+',left='+xPos+',top='+yPos+parameters);}/* End Popup Window Script *//* Begin hide/show question Script */function changeDiv(the_div,the_change){  var the_style = getStyleObject(the_div);  if (the_style != false)  {    the_style.display = the_change;  }}function hideAll(){  changeDiv("type_doctor","none");  changeDiv("plan_see_doc","none");  changeDiv("rx_question","none");  changeDiv("no_rx_question","none");}function getStyleObject(objectId) {  if (document.getElementById && document.getElementById(objectId)) {    return document.getElementById(objectId).style;  } else if (document.all && document.all(objectId)) {    return document.all(objectId).style;  } else {    return false;  }}/* End hide/show question Script */
