ÿþ<html> <head> <title>Procedures at Gastrointestinal Associates</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="JavaScript"> <!-- function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } //--> </script> <SCRIPT LANGUAGE=javascript> <!-- Begin // Dropdown Menus v. 1.1 var isDOM = (document.getElementById ? true : false); var isIE4 = ((document.all && !isDOM) ? true : false); var isNS4 = (document.layers ? true : false); function getRef(id) { if (isDOM) return document.getElementById(id); if (isIE4) return document.all[id]; if (isNS4) return document.layers[id]; } function getSty(id) { return (isNS4 ? getRef(id) : getRef(id).style); } // Hide timeout. var popTimer = 0; // Array showing highlighted menu items. var litNow = new Array(); // Horizontal offset. Used if centered. var widthOffset = 0; function popOver(menuNum, itemNum) { clearTimeout(popTimer); hideAllBut(menuNum); litNow = getTree(menuNum, itemNum); changeCol(litNow, true); targetNum = menu[menuNum][itemNum].target; if (targetNum > 0) { thisX = parseInt(menu[menuNum][0].ref.left) + parseInt(menu[menuNum][itemNum].ref.left); thisY = parseInt(menu[menuNum][0].ref.top) + parseInt(menu[menuNum][itemNum].ref.top); with (menu[targetNum][0].ref) { left = parseInt(thisX + menu[targetNum][0].x); top = parseInt(thisY + menu[targetNum][0].y); visibility = 'visible'; cursor="hand"; } } } function popOut(menuNum, itemNum) { if ((menuNum == 0) && !menu[menuNum][itemNum].target) hideAllBut(0) else popTimer = setTimeout('hideAllBut(0)', 500); } function getTree(menuNum, itemNum) { // Array index is the menu number. The contents are null (if that menu is not a parent) // or the item number in that menu that is an ancestor (to light it up). itemArray = new Array(menu.length); while(1) { itemArray[menuNum] = itemNum; // If we've reached the top of the hierarchy, return. if (menuNum == 0) return itemArray; itemNum = menu[menuNum][0].parentItem; menuNum = menu[menuNum][0].parentMenu; } } // Pass an array and a boolean to specify colour change, true = over colour. function changeCol(changeArray, isOver) { for (menuCount = 0; menuCount < changeArray.length; menuCount++) { if (changeArray[menuCount]) { newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol; // Change the colours of the div/layer background. with (menu[menuCount][changeArray[menuCount]].ref) { if (isNS4) bgColor = newCol; else backgroundColor = newCol; } } } } function hideAllBut(menuNum) { var keepMenus = getTree(menuNum, 1); for (count = 0; count < menu.length; count++) if (!keepMenus[count]) menu[count][0].ref.visibility = 'hidden'; changeCol(litNow, false); } function refreshMenus(){ if(!isNS4){ menu[0][0].ref.visibility = 'hidden'; } writeMenus(); } // *** MENU CONSTRUCTION FUNCTIONS *** function Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass) { // True or false - a vertical menu? this.isVert = isVert; // The popout indicator used (if any) for this menu. this.popInd = popInd // Position and size settings. this.x = x; this.y = y; this.width = width; // Colours of menu and items. this.overCol = overCol; this.backCol = backCol; // The stylesheet class used for item borders and the text within items. this.borderClass = borderClass; this.textClass = textClass; // Parent menu and item numbers, indexed later. this.parentMenu = null; this.parentItem = null; // Reference to the object's style properties (set later). this.ref = null; } function Item(text, href, frame, length, spacing, target) { this.text = text; this.href = href; this.frame = frame; this.length = length; this.spacing = spacing; this.target = target; // Reference to the object's style properties (set later). this.ref = null; } function writeMenus() { if (!isDOM && !isIE4 && !isNS4) return; for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) { // Variable for holding HTML for items and positions of next item. var str = '', itemX = 0, itemY = 0; // Remember, items start from 1 in the array (0 is menu object itself, above). // Also use properties of each item nested in the other with() for construction. for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem]) { var itemID = 'menu' + currMenu + 'item' + currItem; // The width and height of the menu item - dependent on orientation! var w = (isVert ? width : length); var h = (isVert ? length : width); // Create a div or layer text string with appropriate styles/properties. // Thanks to Paul Maden (www.paulmaden.com) for helping debug this in IE4, apparently // the width must be a miniumum of 3 for it to work in that browser. if (isDOM || isIE4) { str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; '; if (backCol) str += 'background: ' + backCol + '; '; str += '" '; } if (isNS4) { str += '<layer id="' + itemID + '" left="' + itemX + '" top="' + itemY + '" width="' + w + '" height="' + h + '" visibility="inherit" '; if (backCol) str += 'bgcolor="' + backCol + '" '; } if (borderClass) str += 'class="' + borderClass + '" '; // Add mouseover handlers and finish div/layer. str += 'onMouseOver="popOver(' + currMenu + ',' + currItem + ');" onMouseOut="popOut(' + currMenu + ',' + currItem + ')">'; // Add contents of item (default: table with link inside). // In IE/NS6+, add padding if there's a border to emulate NS4's layer padding. // If a target frame is specified, also add that to the <a> tag. //str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 3 : 0) + '"><tr><td align="left" height="' + (h - 7) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>'; str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 3 : 0) + '"><tr><td align="left" height="' + (h - 7) + '" onclick=' + 'javsscript:window.location="' + href + '";>' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a>' + '</td>'; if (target > 0) { // Set target's parents to this menu item. menu[target][0].parentMenu = currMenu; menu[target][0].parentItem = currItem; // Add a popout indicator. if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>'; } str += '</tr></table>' + (isNS4 ? '</layer>' : '</div>'); if (isVert) itemY += length + spacing; else itemX += length + spacing; } if (isDOM) { var newDiv = document.createElement('div'); document.getElementsByTagName('body').item(0).appendChild(newDiv); newDiv.innerHTML = str; ref = newDiv.style; ref.position = 'absolute'; ref.top = 0; ref.visibility = 'hidden'; } // Insert a div tag to the end of the BODY with menu HTML in place for IE4. if (isIE4) { document.body.insertAdjacentHTML('beforeEnd', '<div id="menu' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden">' + str + '</div>'); ref = getSty('menu' + currMenu + 'div'); } // In NS4, create a reference to a new layer and write the items to it. if (isNS4) { ref = new Layer(0); ref.document.write(str); ref.document.close(); } for (currItem = 1; currItem < menu[currMenu].length; currItem++) { itemName = 'menu' + currMenu + 'item' + currItem; if (isDOM || isIE4) menu[currMenu][currItem].ref = getSty(itemName); if (isNS4) menu[currMenu][currItem].ref = ref.document[itemName]; } } //Sets the offset if the window is centered. if (siteWidth > 0){ winW = (isNS4)? window.innerWidth-16 : document.body.offsetWidth-20; if (winW > siteWidth){ widthOffset=((winW-siteWidth)/2); } else { widthOffset=0 } } else { widthOffset = 0; } // FUTURE - setes the vertical offset to make sure is not // pass the bottom of the screen. //winH = (ns4)? window.innerHeight : document.body.offsetHeight with(menu[0][0]) { ref.left = x + widthOffset; ref.top = y; ref.visibility = 'visible'; } } // *** OPTIONAL CODE FROM HERE DOWN *** // These two lines handle the window resize bug in NS4. See <body onResize="...">. // I recommend you leave this here as otherwise when you resize NS4's width menus are hidden. var popOldWidth = window.innerWidth; nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()'); // This is a quick snippet that captures all clicks on the document and hides the menus // every time you click. Use if you want. if (isNS4) document.captureEvents(Event.CLICK); document.onclick = clickHandle; function clickHandle(evt) { if (isNS4) document.routeEvent(evt); hideAllBut(0); } // This is just the moving command for the example. function moveRoot() { with(menu[0][0].ref) left = ((parseInt(left) < 100) ? 100 : 5); } //The following is used to fix cross browser bugs. // To display the menus as early as possible we use we call showMenu() at the end of the page // this way it doesn't have to wait for all the images to download. // Netscape 4 does not display menu unless it is called in the onload command. // IE and NS6 does not show the mouseover background color // if it has loaded the menus more than once. //Used to see the times show menu has been called var pass=0; function showMenus(){ pass = pass + 1; //IE or NS6 write on the first pass if (isDOM) { if(pass==1){ writeMenus(); } } //NS4 write on the onload command (pass 2) if (isNS4) { if(pass==2){ writeMenus(); } } //Other browser on second pass if (!isDOM && !isNS4) { if(pass==2){ writeMenus(); } } } // End --> </SCRIPT> <SCRIPT LANGUAGE="JavaScript"> var menu = new Array(); var defOver = '#78A7D6', defBack = '#FFFFFF'; // Default 'length' of menu items - item height if menu is vertical, width if horizontal. var defLength = 22; // Width of site. Used to calculate the horizontal offset for websites that are centered. // Set to zero if the site is not centered. var siteWidth = 0; // Menu 0 is the special, 'root' menu from which everything else arises. menu[0] = new Array(); // A non-vertical menu with a few different colours and no popout indicator, as an example. // *** MOVE ROOT MENU AROUND HERE *** it's positioned at (5, 0) and is 17px high now. menu[0][0] = new Menu(false, '', 87, 240, 0, '#FFFFFF', defBack, '', 'itemText'); menu[0][1] = new Item('<img border="0" src="images/education.gif">', '#', '', 74, 1, 1); // menu. menu[1] = new Array(); menu[1][0] = new Menu(true, '', 147, 15, 120, defOver, defBack, 'itemBorder', 'itemText'); menu[1][1] = new Item('Associate News', 'news.htm', '', defLength, 0, 0); menu[1][2] = new Item('Diseases', 'diseases.htm', '', defLength, 0, 0); menu[1][3] = new Item('Procedures', 'procedures.htm', '', defLength, 0, 0); menu[1][4] = new Item('Diets', 'diets.htm', '', defLength, 0, 0); menu[1][5] = new Item('Drugs', 'drugs.htm', '', defLength, 0, 0); menu[1][6] = new Item('Endoscopy Images', 'endo.htm', '', defLength, 0, 0); menu[1][7] = new Item('Suggested Reading', 'read.htm', '', defLength, 0, 0); </script> <!-- *** IMPORTANT STYLESHEET SECTION - Change the border classes and text colours *** --> <style> <!-- .itemBorder { border: 1px solid black } .itemText { text-decoration: none; color: #000000; font: 12px Arial, Helvetica } .crazyBorder { border: 2px outset #663399 } .crazyText { text-decoration: none; color: #FFCC99; font: Bold 12px Arial, Helvetica } --> </style> <script language="JavaScript"> <!-- function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } //--> </script> </head> <body onResize="refreshMenus();" onLoad="showMenus();" bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <table width="700" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"><img src="images/blu.gif" usemap="#Map" border="0" width="700" height="130"></td> </tr> </table> <table width="700" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> <td width="87"><img src="images/curve.gif" width="87" height="107"></td> <td><img src="images/but5_read.gif" width="147" height="169" usemap="#Map2" border="0"><br><img border="0" src="images/10px.gif" width="10" height="50"><!--webbot bot="Include" U-Include="mov_include.htm" TAG="BODY" startspan --><!--webbot bot="Include" endspan i-checksum="0" --> </td> <td width="10">&nbsp;</td> <td width="500"> <table width="450" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <div align="left"> <p><img src="images/10px.gif" width="10" height="15"><br> <font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>PROCEDURES</b></font></p> </div> <div align="left"> <p><FONT SIZE="2" FACE="Verdana">Learn about the different procedures offered by Gastrointestinal Associates. Select from the below drop-down menu.</FONT></p> </div> <div align="left"> <p><FONT SIZE="2" FACE="Verdana"><!--webbot bot="JUMP" startspan PREVIEW="<select size=&quot;1&quot; ><option> -- Select Procedure -- </option></select>" u-menulink1="pro_colon.htm" clientside s-menu1="colonoscopy" u-menulink2="pro_col.htm" s-menu2="Colyte preparation for colonoscopy" s-target="" u-menulink3="pro_man.htm" s-menu3="Esophageal Manometry" i-type="3" u-menulink4="pro_fleet.htm" s-menu4="Fleet Phospho-Soda preparation for colonoscopy" i-count="10" u-menulink5="pro_liver.htm" s-menu5="Liver Biopsy" i-menusize="1" s-inform=" -- Select Procedure -- " s-separator="" s-menu6="Proper Use of an Enema" u-menulink6="pro_enema.htm" s-menu7="Upper Endoscopy" u-menulink7="pro_upend.htm" s-menu8="ERCP" u-menulink8="pro_ercp.htm" s-menu9="Lower GI Series" u-menulink9="pro_lowergi.htm" S-MENU10="Upper GI Series" U-MENULINK10="pro_uppergi.htm" --> <form name="JBOT123828" > <select name=dest size="1" onChange="if (this.selectedIndex > 0) window.open( document.JBOT123828.dest.options[document.JBOT123828.dest.selectedIndex].value,'_self'); this.selectedIndex = 0;" > <option selected> -- Select Procedure -- </option> <option value="pro_colon.htm" >Colonoscopy</option> <option value="pro_col.htm" >Colyte preparation for colonoscopy</option> <option value="pro_man.htm" >Esophageal Manometry</option> <option value="pro_liver.htm" >Liver Biopsy</option> <option value="pro_enema.htm" >Proper Use of an Enema</option> <option value="pro_upend.htm" >Upper Endoscopy</option> <option value="pro_ercp.htm" >ERCP</option> <option value="pro_lowergi.htm" >Lower GI Series</option> <option value="pro_uppergi.htm" >Upper GI Series</option> <option value="cap_endo.htm" >PillCam (Capsule Endoscopy)</option> <option value="pro_hasame.htm" >Half-lytely Preparation  Same Day</option> <option value="pro_haday.htm" >Half-lytely Preparation  Day Before</option> <option value="osmoprep.htm" >Osmoprep</option> <option value="SameDayGlycolaxPrep.htm" >Miralax prep  same day</option> <option value="GlycolaxPrep.htm" >Miralax prep  day before</option> </select> </form> <!--webbot bot="JUMP" endspan --></FONT></p> </div> <div align="left"> <p>&nbsp;</p> </div> </td> </tr> </table> </td> </tr> <tr valign="top"> <td colspan="4"><img src="images/line.gif" width="686" height="3"></td></tr> <tr valign="top"> <td width="87">&nbsp;</td> <td>&nbsp;</td> <td width="10">&nbsp;</td> <td width="500"> <div align="center"><font size="1" face="Arial, Helvetica, sans-serif"><img src="images/10px.gif" width="10" height="10"><br> Copyright 2006 © GI Associates<br> website by <a href="http://www.advancewebdesign.com" target="_blank">Advance Design</a><br> <a href="#pop_disclaim.htm" onClick="MM_openBrWindow('pop_disclaim.htm','disclaimer','scrollbars=yes,width=425,height=400')">Disclaimer </a> | <a href="priv2.pdf" target="_blank">Privacy Statement</a></font></div> </td> </tr> </table> <p> <map name="Map2"> <area shape="rect" coords="51,8,135,45" href="docs.htm"> <area shape="rect" coords="44,45,138,68" href="practice.htm"> <area shape="rect" coords="36,71,136,91" href="apps.htm"> <area shape="rect" coords="82,95,136,116" href="links.htm"> <area shape="rect" coords="7,118,133,138" href="education.htm"> <area shape="rect" coords="90,141,140,162" href="faq.htm"> </map> </p> <p>&nbsp; </p> <map name="Map"> <area shape="rect" coords="233, 71, 270, 87" href="index.htm"> <area shape="rect" coords="279, 70, 356, 89" href="cont.htm"> <area shape="rect" coords="366, 69, 419, 84" href="site.htm"> <AREA HREF="search.htm" SHAPE="rect" COORDS="425, 69, 477, 87"> </map> </body><SCRIPT LANGUAGE=javascript>showMenus();</SCRIPT> </html>