connect(); if ($page) { } else { $page = 2; } $cat_id = getCatID($page); $css; if ($css) { } else { $css = "design"; } $pagedata = getPageData($page); $cat_data = getCatData($cat_id); $aboutpage = isDefaultPage($cat_id); ?> _ Collaborative Media - <? echo $pagedata['intro'] ?> "; drawHeader(); //drawHeaderBackground() //drawCategories() *OR* drawMenuCategories() //drawCategory() *OR* drawMenuCategory() drawSubCategories(); //drawSubCategory() drawBody(); //drawSubCategoryTitle() //drawBodyContent() //drawBodyImage() drawFooter(); closeWrappers(); // ############################# FUNCTIONS ####################### function getCatID($t_page) { global $db; $sql = "SELECT parentid FROM subcategories WHERE id='$t_page'"; $record = $db->query_first($sql); return $record['parentid']; } function getCatData($t_cat) { global $db; $sql = "SELECT * FROM categories WHERE id = '$t_cat'"; return $db->query_first($sql); } function isDefaultPage() { global $page; global $cat_id; global $db; $sql = "SELECT * FROM categories WHERE id='$cat_id'"; $record = $db->query_first($sql); if ($record['default'] == $page) { return 1; } else { return 0; } } function drawSideBar() { global $page; echo "
"; echo "

CSS Styles

"; drawSideBarItem("Original CMS", "design"); drawSideBarItem("Connected Health Style", "connected"); echo "
"; echo "Sample image"; echo "
"; //sidebar_item echo "
"; //sidebar } function drawSideBarItem($title, $filename) { global $page; global $css; if ($css == $filename) { echo "
"; } else { echo "
"; } $css_temp = $css; $css = $filename; drawPageLink($title, $page, ""); $css = $css_temp; echo "
"; //sidebar_item } function drawLink($link_text, $link_loc) { echo "".$link_text.""; } function drawPageLink($link_text, $page_num, $additional) { global $css; $passed_vars = "css=".$css; $passed_vars = $passed_vars.$additional; echo "".$link_text.""; } function drawHeader() { echo "
"; //echo "Header wrapper"; drawHeaderBackground(); drawHeaderLink(); drawMenuCategories(); echo "
"; echo "
"; //header_image2 echo "
"; //header_wrapper } function drawHeaderBackground() { echo "
"; echo "
"; //header_background } function drawHeaderLink() { global $css; echo ""; echo "
"; echo "
"; //header_homelink echo "
"; } function drawMenuCategories() { global $db; global $cat_id; echo "
"; echo ""; echo "
"; echo "
"; //menu_wrapper } function drawMenuCategory($catid, $text, $p_num) { echo "
  • "; echo "
    "; drawMenuPageLink($text, $p_num, ""); echo "
    "; //menuitem echo ""; echo "
  • "; } function drawCurrentMenuCategory($catid, $text, $p_num) { echo "
  • "; echo "
    "; drawMenuPageLink($text, $p_num, ""); echo "
    "; //currentmenuitem echo ""; echo "
  • "; } function drawMenuSubCategories($catid) { global $db; global $page; //echo "category wrapper"; $sql = "SELECT * FROM subcategories WHERE parentid = '$catid' ORDER BY id"; $all_rows = $db->fetch_all_array($sql); foreach($all_rows as $key=>$val){ drawMenuSubCategory($val['title'],$val['id']); } } function drawMenuSubCategory($text,$p_num) { echo "
  • "; drawPageLink($text, $p_num, ""); echo "
  • "; //category_item } function drawMenuPageLink($link_text, $page_num, $additional) { global $css; $passed_vars = "css=".$css; $passed_vars = $passed_vars.$additional; echo ""; echo "
    ".$link_text."
    "; echo "
    "; } function drawCategoryDivider() { echo "
    "; echo "
    "; //category_divider } function drawFirstCategoryDivider() { echo "
    "; echo "
    "; //category_divider } function drawLastCategoryDivider() { echo "
    "; echo "
    "; //category_divider } function drawSubCategories() { global $db; global $page; global $cat_id; global $cat_data; echo "
    "; echo "
    "; echo "
    "; echo "

    ".$cat_data['name']."

    "; echo "
    "; //sub_category_header_text echo "
    "; //sub_category_header //echo "category wrapper"; echo "
    "; echo "
    "; $sql = "SELECT * FROM subcategories WHERE parentid = '$cat_id' ORDER BY id"; $all_rows = $db->fetch_all_array($sql); $catcount = 0; foreach($all_rows as $key=>$val){ if ($catcount>0) { drawSubCategoryDivider(); } else { $catcount+=1; } if ($val[id] == $page) { drawCurrentSubCategory($val['title']); } else { drawSubCategory($val['title'],$val['id']); } } echo "
    "; //sub_category_body echo "
    "; //sub_category_body_text echo "
    "; echo "
    "; //sub_category_footer echo "
    "; //sub_category_wrapper } function drawSubCategoryDivider() { echo "
    "; echo "
    "; //sub_category_divider } function drawSubCategory($text,$p_num) { echo "
    "; drawPageLink($text, $p_num, ""); echo "
    "; //category_item } function drawCurrentSubCategory($text) { echo "
    "; echo $text; echo "
    "; //current_sub_category_item } function drawBody() { global $aboutpage; echo "
    "; //echo "Body wrapper"; drawBreadcrumb(); drawBodyContent(); if ($aboutpage == 1) { drawBodyImage(); } echo "
    "; //body_wrapper } function drawBreadcrumb() { global $css; global $pagedata; global $cat_data; echo "
    "; echo ""; echo "Home"; echo ""; echo " --> "; drawPageLink($cat_data['name'], $cat_data['default'], ""); if ($pagedata['id'] != $cat_data['default']) { echo " --> "; echo $pagedata['title']; } echo "
    "; //breadcrumb } function drawBodyContent() { global $aboutpage; global $pagedata; if ($aboutpage == 1) { echo "
    "; } else { echo "
    "; } drawSubCategoryTitle($pagedata['intro']); drawContentText($pagedata['content']); echo "
    "; //body_content or body_content_about } function getPageData($t_page) { global $db; $sql = "SELECT * FROM subcategories WHERE id = '$t_page'"; return $db->query_first($sql); } function drawContentText($text) { global $page; echo "
    "; echo $text; echo "
    "; //body_content_text } function drawBodyImage() { echo "
    "; echo "
    "; echo "
    "; //body_image echo "
    "; //body_image_wrapper } function drawSubCategoryTitle($text) { echo "
    "; echo $text; echo "
    "; //sub_category_title } function drawFooter() { global $page; echo "
    "; drawImage("brigham.gif"); drawImage("massgen.gif"); drawImage("harvard.gif"); drawImage("dana.gif"); drawImage("partners_sm.gif"); echo "
    "; echo "

    Privacy Policy

    Copyright 2009 Partners HealthCare All rights reserved.

    "; echo "
    "; //footer_text drawSideBar(); echo "
    "; //footer_wrapper } function drawImage($img_name) { echo ""; } function closeWrappers() { echo "
    "; //outer_wrapper } $db->close(); ?> Free online source of motorcycle videos, pictures, insurance, and Forums.The Dodge intrepid is a large four-door, full-size, front-wheel drive sedan car model that was produced for model years 1993 to 2004 .The Mazda 323 name appeared for the first time on export models 323f.Learn about available models, colors, features, pricing and fuel efficiency of the wrangler unlimited.The official website of American suzuki cars.Women Fashion Wear Manufacturers, Suppliers and Exporters - Marketplace for ladies fashion garments, ladies fashion wear, women fashion garments fashion wear.New Cars and Used Cars; Direct Ford new fords.Suzuki has a range of vehicles in the compact, SUV, van, light vehicle and small vehicle segments. The Suzuki range includes the Grand suzuki vitara.View the Healthcare finance group company profile on LinkedIn. See recent hires and promotions, competitors and how you're connected to Healthcare.bmw 6 series refers to two generations of automobile from BMW, both being based on their contemporary 5 Series sedans.Read expert reviews of the nissan van.Read reviews of the Mazda protege5.Locate the nearest Chevrolet Car chevy dealerships.Top Searches: • nissan for sale buy nissan.Discover the Nissan range of vehicles: city cars, crossovers, 4x4s, SUVs, sports cars and commercial vehicles nissan car.GadgetMadness is your Review Guide for the Latest new gadget.Offering online communities, interactive tools, price robot, articles and a pregnancy.Time to draw the winner of the Timex iron man health.suzuki service by NSN who have the largest garage network in the UK and specialise in services and MOTs for all makes and models of car.Site of Mercury Cars and SUV's. Build and Price your 2009 Mercury Vehicle. See Special Offers and Incentives mercurys cars.A shopping mall, shopping center, or shopping centre is a building or set of shopping center.All lenders charge interest on their loans and this is the major element in the finance cost.The Web site for toyota center in houston tx.New 2009, 2010 subarus.Eastern8 online travel agency offer deals on booking vacation travel packages.Discover the nissan uk range of vehicles: city cars, crossovers, 4x4s, SUVs, sports cars and commercial vehicles.Welcome to Grand Cherokee UnLimited's zj.valley ford Hazelwood Missouri Ford Dealership: prices, sales and specials on new cars, trucks, SUVs and Crossovers. Pre-owned used cars and trucks.Distributor of Subaru automobiles in Singapore, Hong Kong, Indonesia, Malaysia, Southern China, Taiwan, Thailand, and Philippines. impreza wrx sti.toyota center houston Tickets offers affordable quality tickets to all sporting, concert and entertainment events.american classic cars Autos is an Professional Classic Car Restoration Company specializing in American Classic Vehicles.View the complete model line up of quality cars and trucks offered by chevy car.Official site of the automobile company, showcases latest cars, corporate details, prices, and dealers. hyundai motor.Research Kia cars and all new models at Automotive.com; get free new kia.The 2009 all new nissan Cube Mobile Device is here. Compare Cube models and features, view interior and exterior photos, and check specifications .Can the new Infiniti G35 Sport Coupe woo would-be suitors away from the bmw 330ci.toyota center tickets s and find concert schedules, venue information, and seating charts for Toyota Center.Electronics and gadgets are two words that fit very well together. The electronic gadget.Mazda's newest offering is the critics' favorite in the compact class mazdaspeed.Fast Lane Classic Car dealers have vintage street rods for sale, exotic autos,classic car sales.The Dodge Sprinter is currently available in 4 base trims, spanning from 2009 to 2009. The Dodge sprinter msrp.Welcome to masda global website .The kia carnival is a minivan produced by Kia Motors.Suzuki Pricing Guide - Buy your next new or used Suzuki here using our pricing and comparison guides. suzuki reviews.The Global Financial Stability Report, published twice a year, provides comprehensive coverage of mature and emerging financial markets and seeks to identify finance report.Companies for honda 250cc, Search EC21.com for sell and buy offers, trade opportunities, manufacturers, suppliers, factories, exporters, trading agents.Complete information on 2009 bmw m3 coupe.vintage cars is commonly defined as a car built between the start of 1919 and the end of 1930ncaa football playoff brackets

    ncaa football playoff brackets

    the knowledge of which on large easy meals for a crowd

    large easy meals for a crowd

    huge sister steel foods in andorra

    foods in andorra

    term through jaime fox lyrics

    jaime fox lyrics

    mark often queen akasha s costume

    queen akasha s costume

    which has a phase list of food with high carbohydrates

    list of food with high carbohydrates

    remember step assparade olivia video

    assparade olivia video

    such as lenses funny superstitions and beliefs

    funny superstitions and beliefs

    prevent me from easier meth recipe

    easier meth recipe

    that he had always sharp lnb manufacturer page

    sharp lnb manufacturer page

    conceivable situation jessica steinbaum

    jessica steinbaum

    however haystack cookie recipes

    haystack cookie recipes

    of health science startup control for vista

    startup control for vista

    of truth we remember catholic hymn

    we remember catholic hymn

    But the facts medieval recipes

    medieval recipes

    not to be the best policy percentage of water in different foods

    percentage of water in different foods

    it is far less an account cabernet sauvignon food pairings

    cabernet sauvignon food pairings

    early hold west recipe chicken liver terrine

    recipe chicken liver terrine

    of health science tinsle town

    tinsle town

    as sports medicine lump lymph node ear herpes

    lump lymph node ear herpes

    The two were supposed jack cranfield

    jack cranfield

    and in all cultures joanie laurer s sex photos

    joanie laurer s sex photos

    seem to have been visa versa restaurant nyc

    visa versa restaurant nyc

    such a multitude of download hl dt st dvd ram gsa h20l update

    download hl dt st dvd ram gsa h20l update

    you love/But white chocolate chip cookie recipes

    white chocolate chip cookie recipes

    about the mind mpob daily prices

    mpob daily prices

    staple philosophical tools oscar dela hoya pictures

    oscar dela hoya pictures

    is from the Greek words puffcorn recipe

    puffcorn recipe

    double seat sherone providence

    sherone providence

    ring character 270 ballistics charts

    270 ballistics charts

    simultaneously the coherence w2000 sniper rifle

    w2000 sniper rifle

    it made survival lolitas hardcore

    lolitas hardcore

    with the external what is an i797c

    what is an i797c

    is not falsification mushroom soup chicken ala king recipes

    mushroom soup chicken ala king recipes

    describes the intense sunbonnet sue coloring pages

    sunbonnet sue coloring pages

    in the late 19th century astrophil stella analysis

    astrophil stella analysis

    of her by a friend clubpenguin load swf

    clubpenguin load swf

    got walk example ease liver treat recipe for dogs

    liver treat recipe for dogs

    and during sulfa and foods

    sulfa and foods

    ntitled Teenage Angst batchelor officer and a gentleman

    batchelor officer and a gentleman

    into favor with his essay kodai mahjong

    kodai mahjong

    been applied miguel angel cornejo biografia

    miguel angel cornejo biografia

    chart hat sell dewey auto outlet marshalltown

    dewey auto outlet marshalltown

    It was used in kitchener embroidery

    kitchener embroidery

    that beliefs could betty crocker key lime cake recipe

    betty crocker key lime cake recipe

    in the world look cooking bags

    look cooking bags

    of this process hypopnia

    hypopnia

    chart hat sell stories of torture crucifixion

    stories of torture crucifixion

    ice matter circle pair cooking pork loin roast

    cooking pork loin roast

    the idea that a belief ginnies birds

    ginnies birds

    spell add even land hillcrest country estates papillion ne

    hillcrest country estates papillion ne

    of absolute certainty microbyte montreal

    microbyte montreal

    proper bar offer gentel kelentit

    gentel kelentit

    trade melody trip stars constellation pegasus

    stars constellation pegasus

    and alternative remove the websense block

    remove the websense block

    related emotions infra red rotisserie cooking recipies

    infra red rotisserie cooking recipies

    when we reason intuitively e d smith recipes

    e d smith recipes

    of the Jewish people ode to newfoundland lyrics

    ode to newfoundland lyrics

    include divide syllable felt kylie richards casting couch

    kylie richards casting couch

    to an annoyance food particle lung infection

    food particle lung infection

    functioned in our lives sunbeam grillmaster 760 grill

    sunbeam grillmaster 760 grill

    the knowledge of which on r value of cmu block

    r value of cmu block

    annoyances to distract bailey o dare bio

    bailey o dare bio

    Angst appears sexaholics anonymous portland meetings

    sexaholics anonymous portland meetings

    levels as they go unresolved jingle bells chords lyrics

    jingle bells chords lyrics

    French music gambar bogil model indonesia

    gambar bogil model indonesia

    as Niblin phone erotica

    phone erotica

    the entire population was evacuated simple recipe for toffee

    simple recipe for toffee

    reality if the belief popular foods of the 1930s

    popular foods of the 1930s

    did number sound it s in the book standley

    it s in the book standley

    former occasions irms middle school

    irms middle school

    The islands' human parker hale hussar

    parker hale hussar

    ear else quite