function txtlnk(){
var str = "";
str+="<TABLE WIDTH=560 align=center bgcolor='#E2E2E2' CELLPADDING=0 CELLSPACING=0 border=0>";
str+="<TR><TD height='21' align='center'>";
str+="<a href='index.html' class='atxtlnk' title='Home'>Home</a> &nbsp; &nbsp; - &nbsp; &nbsp; <a href='aboutus.html' class='atxtlnk' title='About US'>About Us</a> &nbsp; &nbsp; - &nbsp; &nbsp; <a href='webdevelopment.html' class='atxtlnk' title='Web Development'>Web Development</a> &nbsp; &nbsp; - &nbsp; &nbsp; <a href='multimedia.html' class='atxtlnk' title='Multimedia'>Multimedia</a> &nbsp; &nbsp; - &nbsp; &nbsp; <a href='showcase.html' class='atxtlnk' title='Showcase'>Showcase</a>  &nbsp; &nbsp; - &nbsp; &nbsp; <a href='samples.html' class='atxtlnk' title='Samples'>Samples</a>  &nbsp; &nbsp; - &nbsp; &nbsp; <a href='contactus.html' class='atxtlnk' title='Contact Us'>Contact Us</a>";
str+="</TD></TR>";
str+="</TABLE>";
document.write (str);
}

function fnTopMenu(){
var str = "";
str+="<table align=center cellpadding=0 cellspacing=0 border=0 width=750 height=21>";
str+="<tr><td><IMG SRC='innerimg/innermenu.jpg' WIDTH=750 HEIGHT=21 USEMAP='#index_Map' border='0'>";
str+="</td></tr>";
str+="</table>";

str+="<MAP NAME='index_Map'>";
str+="<AREA SHAPE='rect' ALT='Home' COORDS='0,0,86,20' HREF='index.html' onMouseOver=javascript:hideall();>";
str+="<AREA SHAPE='rect' ALT='About Us' COORDS='87,0,189,20' HREF='aboutus.html' onMouseOver=javascript:hideall();>";
str+="<AREA SHAPE='rect' ALT='Web Development' COORDS='190,0,337,20' HREF='webdevelopment.html' onMouseOver='javascript:menu(0);' style='cursor:hand;'>";
str+="<AREA SHAPE='rect' ALT='Multimedia' COORDS='338,0,451,20' HREF='multimedia.html' onMouseOver=javascript:hideall();>";
str+="<AREA SHAPE='rect' ALT='Showcase' COORDS='451,0,558,20' HREF='showcase.html' onMouseOver=javascript:hideall();>";
str+="<AREA SHAPE='rect' ALT='Samples' COORDS='559,0,631,20' HREF='samples.html' onMouseOver=javascript:hideall();>";
str+="<AREA SHAPE='rect' ALT='Contact Us' COORDS='632,0,749,20' HREF='contactus.html' onMouseOver=javascript:hideall();>";
str+="</MAP>";

document.write(str);
}