<!--
function setpage(val){
var val = new Number(val);

switch(val.valueOf()){
case 1: openwin('media_services/media_services_overview.htm'); break;//floorplan
case 2: openwin('media_services/media_services_overview.htm'); break;//elevation
case 3: openwin('media_services/tv_production/television_production.htm'); break;
case 4: openwin('media_services/corporate_video/corporate_video.htm'); break;
case 5: openwin('media_services/Flash_animation/flash_design.htm'); break;
case 6: openwin('media_services/website_design/website_design.htm'); break;
case 7: openwin('media_services/Multimedia_CDROM/multimedia_CDROM.htm'); break;
case 8: openwin('media_services/computer_animation/3D_computer_animation.htm'); break;
case 9: openwin('media_services/promotional_e-mail_design/e-mail_design.htm'); break;
case 10: openwin('media_services/print_design/preint_design.htm'); break;

case 20: openwin('marketing_services/marketing_services_overview.htm'); break;
case 21: openwin('marketing_services/search_engine_optimization.htm');  break;
case 22: openwin('marketing_services/pay_per_click.htm'); break;
case 23: openwin('marketing_services/e_mail_marketing.htm'); break;
case 24: openwin('marketing_services/print_mail_marketing.htm'); break;

case 30: openwin('technology_services/technology_services_overview.htm');  break;
case 31: openwin('technology_services/empowered_marketer.htm');  break;
case 32: openwin('technology_services/empowered_sales.htm');  break;
case 33: openwin('technology_services/empowered_office.htm');  break;
case 34: openwin('technology_services/empowered_enterprise.htm');  break;

case 40: openwin('benefits/return_on_investment.htm'); break;
case 50: openwin('benefits/increase_sales.htm'); break;
case 60: openwin('benefits/lead_your_market.htm'); break;
case 70: openwin('benefits/define_your_image.htm'); break;
case 80: openwin('benefits/enterprise_integration.htm'); break;

default: openwin('index.htm');break;
}
}

function openwin(link){
    //win = window.open(link,'info','scrollbars=yes,resizable=yes,width=800,height=600');
	location.href = link;
}
//-->