Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help withthis css

Status
Not open for further replies.

davemib

Programmer
Dec 31, 2002
30
0
0
GB
BODY{
scrollbar-3d-light-color: #D2D2CA;
scrollbar-arrow-color: #999999;
scrollbar-base-color: #D2D2CA;
scrollbar-dark-shadow-color: #D2D2CA;
scrollbar-face-color: #D2D2CA;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #D2D2CA;
}

A:link {
color: #CC0000;
text-decoration: none;
}

A:visited {
color: #CC0000;
text-decoration: none;
}

A:active {
color: #CC0000;
text-decoration: none;
}

A:hover {
color: #CCCCCC;
text-decoration: none;
}

A.dark:link {
color: #666666;
text-decoration: none;
}

A.dark:visited {
color: #666666;
text-decoration: none;
}

A.dark:active {
color: #666666;
text-decoration: none;
}

A.dark:hover {
color: #000000;
text-decoration: none;
}

TD {
font-size: 12px;
font-family : Verdana;
}

P {
font-size: 12px;
font-family : Verdana;
}

TD.dark {
font-size: 12px;
font-family : Tahoma;
color : #666666;
}

P.dark {
font-size: 11px;
font-family : Verdana;
color : #666666;
}

TD.smaller {
font-size: 11px;
font-family : Tahoma;
color : #000000;
}

P.smaller {
font-size: 11px;
font-family : Verdana;
color : #000000;
}

HR {
color : #D2D2CA;
height : 1px;
}


this is my current one

but on my website i also have layers how do i set this up????

within the layers i have text and a dhtml menu!!!!!
 
There isn't much I can help without seeing what you have and knowing what exactly you want to do with it. As a general tip, you will probably want to add your layer information (position, sizes, borders, etc) in your css. Javascript has nothing to do with the css, so your DHTML menu stays the way it is (if it uses a separate external stylesheet it is best to keep it separate). Another thing, you have an error in your existing css. Pseudo classes (for link behaviour) need to be in the exact order to work properly:
:link
:visited
:hover
:active.
Another general rule. CSS stands for cascading style sheets meaning that styles are inherited. If you want to keep the same style for different pseudo classes you just need to define the style for the :link class and the others will be inherited. For the ones you want to use a different style, you define that one (you can thus eliminate text-decoration from all classes but the :link).
 
what i was asking is that here is a web page which has 1 layer

<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;
&quot;<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;>
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName==&quot;Netscape&quot;)&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<LINK REL=STYLESHEET TYPE=&quot;text/css&quot; HREF=&quot;style.css&quot;>
</head>
<body>
<div id=&quot;Layer1&quot; style=&quot;position:absolute; left:49px; top:45px; width:629px; height:149px; z-index:1; font-family: &quot;Courier New&quot;, Courier, mono; font-size: 24px;&quot;>
<div align=&quot;center&quot;><em><strong>hello world </strong></em></div>
</div>
</body>
</html>

how can i add this layer into the css??? so that the fonts and sizes stay the same after i publish it!!!!!
 


If you add the following to your CSS:

Code:
#Layer1
{
	position: absolute;
	left: 49px;
	top: 45px;
	width: 629px;
	height: 149px;
	z-index: 1;
	font-family: &quot;Courier New&quot;, Courier, mono;
	font-size: 24px;
}

Then you can change your layer code to read:

Code:
<div id=&quot;Layer1&quot;>
  <div align=&quot;center&quot;><em><strong>hello world </strong></em></div>
</div>

Is that what you're after?

Dan

 
this may give yoyu a better picture as to what im having problems with!!!!!

plez help!!!!!!!!!


here is the full coding :

css sheet

BODY{
scrollbar-3d-light-color: #D2D2CA;
scrollbar-arrow-color: #999999;
scrollbar-base-color: #D2D2CA;
scrollbar-dark-shadow-color: #D2D2CA;
scrollbar-face-color: #D2D2CA;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #D2D2CA;
}

A:link {
color: #CC0000;
text-decoration: none;
}

A:visited {
color: #CC0000;
text-decoration: none;
}

A:active {
color: #CC0000;
text-decoration: none;
}

A:hover {
color: #CCCCCC;
text-decoration: none;
}

A.dark:link {
color: #666666;
text-decoration: none;
}

A.dark:visited {
color: #666666;
text-decoration: none;
}

A.dark:active {
color: #666666;
text-decoration: none;
}

A.dark:hover {
color: #000000;
text-decoration: none;
}

TD {
font-size: 12px;
font-family : Verdana;
}

P {
font-size: 12px;
font-family : Verdana;
}

TD.dark {
font-size: 12px;
font-family : Tahoma;
color : #666666;
}

P.dark {
font-size: 11px;
font-family : Verdana;
color : #666666;
}

TD.smaller {
font-size: 11px;
font-family : Tahoma;
color : #000000;
}

P.smaller {
font-size: 11px;
font-family : Verdana;
color : #000000;
}

HR {
color : #D2D2CA;
height : 1px;
}


css sheet ends



html starts

<html>
<head>
<title>Welcome</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>


<LINK REL=STYLESHEET TYPE=&quot;text/css&quot; HREF=&quot;style.css&quot;>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<script language=&quot;JavaScript&quot;>
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->
</script>
<script language=&quot;JavaScript&quot;>
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a)&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a.indexOf(&quot;#&quot;)!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a;}}
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;>
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName==&quot;Netscape&quot;)&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf(&quot;?&quot;))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers.document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
//-->
</script>
<script type=&quot;text/javascript&quot; language=&quot;JavaScript1.2&quot; src=&quot;stm31.js&quot;></script>
<style type=&quot;text/css&quot;>
<!--
.style1 {
font-family: &quot;Arial Black&quot;;
color: #FF0000;
}
.style3 {font-size: 10px}
.style4 {color: #FF0000}
-->
</style>
</head>

<body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; onLoad=&quot;var SymTmpWinOpen = window.open; window.open = SymWinOpen;MM_preloadImages('images/buttons/homeov.gif','images/buttons/aboutov.gif','images/buttons/contactov.gif','images/buttons/helpov.gif','images/buttons/termov.gif','images/buttons/searchov.gif'); window.open = SymTmpWinOpen&quot;>
<div id=&quot;Layer1&quot; style=&quot;position:absolute; left:0px; top:177px; width:117px; height:75px; z-index:1;&quot;>
<script id=&quot;Sothink Widgets:About1.pgt&quot; type=&quot;text/javascript&quot; language=&quot;JavaScript1.2&quot;>
<!--
stm_bm([&quot;ivvnair&quot;,400,&quot;&quot;,&quot;blank.gif&quot;,0,&quot;&quot;,&quot;&quot;,0,0,0,0,50,1,0,0]);
stm_bp(&quot;p0&quot;,[1,4,0,0,0,3,0,7,100,&quot;&quot;,-2,&quot;&quot;,-2,90,0,0,&quot;#000000&quot;,&quot;#ffffff&quot;,&quot;&quot;,3,0,0,&quot;#ffffff&quot;]);
stm_ai(&quot;p0i0&quot;,[6,1,&quot;#000000&quot;,&quot;1x200green.gif&quot;,137,1,0]);
stm_ai(&quot;p0i1&quot;,[0,&quot;PC Upgrades&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;&quot;,&quot;_self&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,0,0,0,&quot;arrow_r.gif&quot;,&quot;arrow_r.gif&quot;,7,7,0,0,1,&quot;#d2d2ca&quot;,0,&quot;#ededeb&quot;,0,&quot;&quot;,&quot;&quot;,3,3,0,0,&quot;#ffffff&quot;,&quot;#b0d1bf&quot;,&quot;#000000&quot;,&quot;#000000&quot;,&quot;8pt Arial&quot;,&quot;8pt Arial&quot;,0,0]);
stm_bpx(&quot;p1&quot;,&quot;p0&quot;,[1,2,-5,-7,0,3,0,7,100,&quot;progid:DXImageTransform.Microsoft.Iris(irisStyle=SQUARE,motion=out,enabled=0,Duration=0.50)&quot;,1,&quot;&quot;,-2,60]);
stm_aix(&quot;p1i0&quot;,&quot;p0i1&quot;,[0,&quot;Audio&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;&quot;,&quot;_self&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,0,0,0,&quot;arrow_r.gif&quot;,&quot;arrow_r.gif&quot;,7,7,0,0,1,&quot;#ffffff&quot;,0,&quot;#ededeb&quot;,0,&quot;&quot;,&quot;&quot;,3,3,1,1,&quot;#ffffff #669999 #669999 #ffffff&quot;,&quot;#d7eadf #4d704d #4d704d #d7eadf&quot;]);
stm_bpx(&quot;p2&quot;,&quot;p1&quot;,[1,2,-5,-7,0,3,0,0]);
stm_aix(&quot;p2i0&quot;,&quot;p1i0&quot;,[0,&quot;Headsets&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;HEADSETS.htm&quot;,&quot;_self&quot;,&quot;HEADSETS.htm&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,0,0,0,&quot;&quot;,&quot;&quot;,-1,-1]);
stm_aix(&quot;p2i1&quot;,&quot;p2i0&quot;,[0,&quot;Speakers&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;SPEAKERS.htm&quot;,&quot;_self&quot;,&quot;SPEAKERS.htm&quot;]);
stm_ep();
stm_aix(&quot;p1i1&quot;,&quot;p1i0&quot;,[0,&quot;CD-ROM &amp; DVD Drives&quot;]);
stm_bpx(&quot;p3&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p3i0&quot;,&quot;p2i0&quot;,[0,&quot;CD Roms&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;CDROMS.htm&quot;,&quot;_self&quot;,&quot;CDROMS.htm&quot;]);
stm_aix(&quot;p3i1&quot;,&quot;p2i0&quot;,[0,&quot;CD-ReWriters&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;CDRW.htm&quot;,&quot;_self&quot;,&quot;CDRW.htm&quot;]);
stm_aix(&quot;p3i2&quot;,&quot;p2i0&quot;,[0,&quot;Combo Drives&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;COMBO.htm&quot;,&quot;_self&quot;,&quot;COMBO.htm&quot;]);
stm_aix(&quot;p3i3&quot;,&quot;p2i0&quot;,[0,&quot;DVD Roms&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;DVDROMS.htm&quot;,&quot;_self&quot;,&quot;DVDROMS.htm&quot;]);
stm_aix(&quot;p3i4&quot;,&quot;p2i0&quot;,[0,&quot;DVD-ReWriters&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;DVD-RROMS.htm&quot;,&quot;_self&quot;,&quot;DVD-RROMS.htm&quot;]);
stm_ep();
stm_aix(&quot;p1i2&quot;,&quot;p1i0&quot;,[0,&quot;Data Storage&quot;]);
stm_bpx(&quot;p4&quot;,&quot;p1&quot;,[]);
stm_aix(&quot;p4i0&quot;,&quot;p2i0&quot;,[0,&quot;Floppy Drive&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;FLOPPYDRIVES.htm&quot;,&quot;_self&quot;,&quot;FLOPPYDRIVES.htm&quot;]);
stm_aix(&quot;p4i1&quot;,&quot;p1i0&quot;,[0,&quot;Hard Drive&quot;]);
stm_bpx(&quot;p5&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p5i0&quot;,&quot;p2i0&quot;,[0,&quot;E-IDE&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;HARDDRIVES.htm&quot;,&quot;_self&quot;,&quot;HARDDRIVES.htm&quot;]);
stm_aix(&quot;p5i1&quot;,&quot;p2i0&quot;,[0,&quot;SATA&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;SATA.htm&quot;,&quot;_self&quot;,&quot;SATA.htm&quot;]);
stm_ep();
stm_ep();
stm_aix(&quot;p1i3&quot;,&quot;p1i0&quot;,[0,&quot;Memory&quot;]);
stm_bpx(&quot;p6&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p6i0&quot;,&quot;p2i0&quot;,[0,&quot;Memory Sticks&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;MEMORYSTICKS.htm&quot;,&quot;_self&quot;,&quot;MEMORYSTICKS.htm&quot;]);
stm_aix(&quot;p6i1&quot;,&quot;p2i0&quot;,[0,&quot;RAM Memory&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;Memory.htm&quot;,&quot;_self&quot;,&quot;Memory.htm&quot;]);
stm_ep();
stm_aix(&quot;p1i4&quot;,&quot;p1i0&quot;,[0,&quot;Mice &amp; Keyboards&quot;]);
stm_bpx(&quot;p7&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p7i0&quot;,&quot;p2i0&quot;,[0,&quot;Mice&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;MICE.htm&quot;,&quot;_self&quot;,&quot;MICE.htm&quot;]);
stm_aix(&quot;p7i1&quot;,&quot;p0i1&quot;,[0,&quot;Keyboards&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;KEYBOARDS.htm&quot;,&quot;_self&quot;,&quot;KEYBOARDS.htm&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,0,0,0,&quot;&quot;,&quot;&quot;,-1,-1,0,0,1,&quot;#ffffff&quot;,0,&quot;#ededeb&quot;,0,&quot;&quot;,&quot;&quot;,3,3,1,1,&quot;#ffffff #669999 #669999 #ffffff&quot;,&quot;#ededeb #4d704d #4d704d #d7eadf&quot;]);
stm_ep();
stm_aix(&quot;p1i5&quot;,&quot;p2i0&quot;,[0,&quot;Modems&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;MODEMS.htm&quot;,&quot;_self&quot;,&quot;MODEMS.htm&quot;]);
stm_aix(&quot;p1i6&quot;,&quot;p1i0&quot;,[0,&quot;Network Hardware&quot;]);
stm_bpx(&quot;p8&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p8i0&quot;,&quot;p2i0&quot;,[0,&quot;Network Cards&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;NETWORKCARDS.htm&quot;,&quot;_self&quot;,&quot;NETWORKCARDS.htm&quot;]);
stm_aix(&quot;p8i1&quot;,&quot;p2i0&quot;,[0,&quot;Wireless Networking&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;WIRELESSNETWORKING.htm&quot;,&quot;_self&quot;,&quot;WIRELESSNETWORKING.htm&quot;]);
stm_ep();
stm_aix(&quot;p1i7&quot;,&quot;p2i0&quot;,[0,&quot;PC Graphics Cards&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;GRAPHICSCARDS.htm&quot;,&quot;_self&quot;,&quot;GRAPHICSCARDS.htm&quot;]);
stm_ep();
stm_aix(&quot;p0i2&quot;,&quot;p0i0&quot;,[]);
stm_aix(&quot;p0i3&quot;,&quot;p0i1&quot;,[0,&quot;Software&quot;]);
stm_bpx(&quot;p9&quot;,&quot;p1&quot;,[]);
stm_aix(&quot;p9i0&quot;,&quot;p2i0&quot;,[0,&quot;AntiVirus &amp; Security&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;ANTIVIRUS.htm&quot;,&quot;_self&quot;,&quot;ANTIVIRUS.htm&quot;]);
stm_aix(&quot;p9i1&quot;,&quot;p2i0&quot;,[0,&quot;Desktop Publishing&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;DTP.htm&quot;,&quot;_self&quot;,&quot;DTP.htm&quot;]);
stm_aix(&quot;p9i2&quot;,&quot;p2i0&quot;,[0,&quot;Graphics&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;GRAPHICS.htm&quot;,&quot;_self&quot;,&quot;GRAPHICS.htm&quot;]);
stm_aix(&quot;p9i3&quot;,&quot;p2i0&quot;,[0,&quot;Office Applications&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;OFFICE.htm&quot;,&quot;_self&quot;,&quot;OFFICE.htm&quot;]);
stm_aix(&quot;p9i4&quot;,&quot;p2i0&quot;,[0,&quot;Operating Systems&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;OS.htm&quot;,&quot;_self&quot;,&quot;OS.htm&quot;]);
stm_aix(&quot;p9i5&quot;,&quot;p1i0&quot;,[0,&quot;Utilities&quot;]);
stm_bpx(&quot;p10&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p10i0&quot;,&quot;p2i0&quot;,[0,&quot;Backup&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;BACKUP.htm&quot;,&quot;_self&quot;,&quot;BACKUP.htm&quot;]);
stm_aix(&quot;p10i1&quot;,&quot;p2i0&quot;,[0,&quot;Scanning&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;SCANNING.htm&quot;,&quot;_self&quot;,&quot;SCANNING.htm&quot;]);
stm_ep();
stm_aix(&quot;p9i6&quot;,&quot;p2i0&quot;,[0,&quot;Video Editing&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;VIDEOED.htm&quot;,&quot;_self&quot;,&quot;VIDEOED.htm&quot;]);
stm_aix(&quot;p9i7&quot;,&quot;p2i0&quot;,[0,&quot;Voice Recognition&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;VOICE.htm&quot;,&quot;_self&quot;,&quot;VOICE.htm&quot;]);
stm_aix(&quot;p9i8&quot;,&quot;p2i0&quot;,[0,&quot;Web Design&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;WEBDESIGN.htm&quot;,&quot;_self&quot;,&quot;WEBDESIGN.htm&quot;]);
stm_ep();
stm_aix(&quot;p0i4&quot;,&quot;p0i0&quot;,[]);
stm_aix(&quot;p0i5&quot;,&quot;p0i1&quot;,[0,&quot;Computers&quot;]);
stm_bpx(&quot;p11&quot;,&quot;p1&quot;,[]);
stm_aix(&quot;p11i0&quot;,&quot;p1i0&quot;,[0,&quot;Desktop PCs&quot;]);
stm_bpx(&quot;p12&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p12i0&quot;,&quot;p2i0&quot;,[0,&quot;Base Units Only&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;comingsoon.htm&quot;,&quot;_self&quot;,&quot;comingsoon.htm&quot;]);
stm_aix(&quot;p12i1&quot;,&quot;p12i0&quot;,[0,&quot;PC &amp; Monitor&quot;]);
stm_ep();
stm_aix(&quot;p11i1&quot;,&quot;p2i0&quot;,[0,&quot;Laptops&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;LAPTOPS.htm&quot;,&quot;_self&quot;,&quot;LAPTOPS.htm&quot;]);
stm_aix(&quot;p11i2&quot;,&quot;p1i0&quot;,[0,&quot;Monitors&quot;]);
stm_bpx(&quot;p13&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p13i0&quot;,&quot;p2i0&quot;,[0,&quot;Standard CRT&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;STANDARD%20CRT.htm&quot;,&quot;_self&quot;,&quot;STANDARD%20CRT.htm&quot;]);
stm_aix(&quot;p13i1&quot;,&quot;p2i0&quot;,[0,&quot;TFT Flat Panel &quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;TFTFLATPANEL.htm&quot;,&quot;_self&quot;,&quot;TFTFLATPANEL.htm&quot;]);
stm_ep();
stm_ep();
stm_aix(&quot;p0i6&quot;,&quot;p0i0&quot;,[]);
stm_aix(&quot;p0i7&quot;,&quot;p0i1&quot;,[0,&quot;PC Cases&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;PCCASES.htm&quot;,&quot;_self&quot;,&quot;PCCASES.htm&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,0,0,0,&quot;&quot;,&quot;&quot;,-1,-1]);
stm_aix(&quot;p0i8&quot;,&quot;p0i0&quot;,[]);
stm_aix(&quot;p0i9&quot;,&quot;p0i1&quot;,[0,&quot;Services&quot;]);
stm_bpx(&quot;p14&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p14i0&quot;,&quot;p2i0&quot;,[0,&quot;Architectural Building Design&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;architect.htm&quot;,&quot;_self&quot;,&quot;architect.htm&quot;]);
stm_aix(&quot;p14i1&quot;,&quot;p2i0&quot;,[0,&quot;Custom Built PC\'s&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;CustomBuiltPC.htm&quot;,&quot;_self&quot;,&quot;CustomBuiltPC.htm&quot;]);
stm_aix(&quot;p14i2&quot;,&quot;p2i0&quot;,[0,&quot;Digital Video Filming &quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;Camera.htm&quot;,&quot;_self&quot;,&quot;Camera.htm&quot;]);
stm_aix(&quot;p14i3&quot;,&quot;p2i0&quot;,[0,&quot;Networking&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;Networking.htm&quot;,&quot;_self&quot;,&quot;Networking.htm&quot;]);
stm_aix(&quot;p14i4&quot;,&quot;p2i0&quot;,[0,&quot;Onsite Installation Basic&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;Onsite.htm&quot;,&quot;_self&quot;,&quot;Onsite.htm&quot;]);
stm_aix(&quot;p14i5&quot;,&quot;p14i4&quot;,[0,&quot;Onsite Installation Premium&quot;]);
stm_aix(&quot;p14i6&quot;,&quot;p2i0&quot;,[0,&quot;PC Minor Upgrade&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;Upgrades.htm&quot;,&quot;_self&quot;,&quot;Upgrades.htm&quot;]);
stm_aix(&quot;p14i7&quot;,&quot;p14i6&quot;,[0,&quot;PC Major Upgrade&quot;]);
stm_aix(&quot;p14i8&quot;,&quot;p2i0&quot;,[0,&quot;PC Repair&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;Repair.htm&quot;,&quot;_self&quot;,&quot;Repair.htm&quot;]);
stm_aix(&quot;p14i9&quot;,&quot;p2i0&quot;,[0,&quot;Website Development&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;Website.htm&quot;,&quot;_self&quot;,&quot;Website.htm&quot;]);
stm_ep();
stm_aix(&quot;p0i10&quot;,&quot;p0i0&quot;,[]);
stm_aix(&quot;p0i11&quot;,&quot;p0i7&quot;,[0,&quot;Digital Cameras&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;DIGITALCAMERAS.htm&quot;,&quot;_self&quot;,&quot;DIGITALCAMERAS.htm&quot;]);
stm_aix(&quot;p0i12&quot;,&quot;p0i0&quot;,[]);
stm_aix(&quot;p0i13&quot;,&quot;p0i1&quot;,[0,&quot;Accessories&quot;]);
stm_bpx(&quot;p15&quot;,&quot;p1&quot;,[]);
stm_aix(&quot;p15i0&quot;,&quot;p1i0&quot;,[0,&quot;Data Storage Media&quot;]);
stm_bpx(&quot;p16&quot;,&quot;p2&quot;,[]);
stm_aix(&quot;p16i0&quot;,&quot;p2i0&quot;,[0,&quot;CD-R Disks&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;DATASTORAGECDR.htm&quot;,&quot;_self&quot;,&quot;DATASTORAGECDR.htm&quot;]);
stm_aix(&quot;p16i1&quot;,&quot;p2i0&quot;,[0,&quot;DVD-R Disks&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;DATASTORAGEDVDR.htm&quot;,&quot;_self&quot;,&quot;DATASTORAGEDVDR.htm&quot;]);
stm_aix(&quot;p16i2&quot;,&quot;p2i0&quot;,[0,&quot;DVD-RW Disks&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;DATASTORAGEDVDRW.htm&quot;,&quot;_self&quot;,&quot;DATASTORAGEDVDRW.htm&quot;]);
stm_ep();
stm_aix(&quot;p15i1&quot;,&quot;p2i0&quot;,[0,&quot;Cables and Connectivity&quot;,&quot;&quot;,&quot;&quot;,-1,-1,0,&quot;CABLES.htm&quot;,&quot;_self&quot;,&quot;CABLES.htm&quot;]);
stm_ep();
stm_aix(&quot;p0i14&quot;,&quot;p0i0&quot;,[]);
stm_ep();
stm_em();
//-->
</script>
</div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:275px; top:175px; width:96px; height:109px; z-index:4; font-weight: bold;&quot;>
<div align=&quot;left&quot;><font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;>BENQ 8x DVD+RW </font></div>
</div>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; left:167px; top:287px; width:205px; height:45px; z-index:5&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;156.04</font></span></p>
<p>&nbsp;</p>
</div>
<div id=&quot;Layer6&quot; style=&quot;position:absolute; left:401px; top:518px; width:201px; height:46px; z-index:6&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;1135.49</font></span><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><b><br>
</b></font></p>
</div>
<div id=&quot;Layer7&quot; style=&quot;position:absolute; left:391px; top:287px; width:208px; height:35px; z-index:7&quot;>
<p><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;110.02</font></span></font></p>
<p><font color=&quot;#FF0000&quot;></font></p>
</div>
<div id=&quot;Layer2&quot; style=&quot;position:absolute; left:164px; top:174px; width:108px; height:111px; z-index:8&quot;><img src=&quot;images/homepage%20offers/product1.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:157px; top:380px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:289px; top:287px; width:85px; height:20px; z-index:10&quot;><a href=&quot;DVD-RROMS005.htm&quot; target=&quot;_self&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer11&quot; style=&quot;position:absolute; left:280px; top:1574px; width:243px; height:22px; z-index:12&quot;><img src=&quot;images/page/topdeals.gif&quot; width=&quot;244&quot; height=&quot;23&quot;></div>
<div id=&quot;Layer12&quot; style=&quot;position:absolute; left:162px; top:2px; width:233px; height:26px; z-index:13&quot;><img src=&quot;images/page/name.gif&quot; width=&quot;231&quot; height=&quot;34&quot;></div>
<div id=&quot;Layer13&quot; style=&quot;position:absolute; left:201px; top:33px; width:156px; height:37px; z-index:14&quot;>
<object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot; width=&quot;154&quot; height=&quot;31&quot;>
<param name=&quot;movie&quot; value=&quot;flash/websiteurl.swf&quot;>
<param name=&quot;quality&quot; value=&quot;high&quot;>
<embed src=&quot;flash/websiteurl.swf&quot; quality=&quot;high&quot; pluginspage=&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;154&quot; height=&quot;31&quot;></embed></object>
</div>
<div id=&quot;Layer14&quot; style=&quot;position:absolute; left:653px; top:338px; width:78px; height:79px; z-index:15&quot;>
<object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot; width=&quot;75&quot; height=&quot;74&quot;>
<param name=&quot;movie&quot; value=&quot;flash/homepagesmall2.swf&quot;>
<param name=&quot;quality&quot; value=&quot;high&quot;>
<embed src=&quot;flash/homepagesmall2.swf&quot; quality=&quot;high&quot; pluginspage=&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;75&quot; height=&quot;74&quot;></embed></object>
</div>
<table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
<tr>
<td rowspan=&quot;2&quot; bgcolor=&quot;#D2D2CA&quot; width=&quot;136&quot;><img src=&quot;images/page/Untitled-1.jpg&quot; width=&quot;136&quot; height=&quot;85&quot;></td>
<td bgcolor=&quot;#D2D2CA&quot;><img src=&quot;images/page/clearpixel.gif&quot; width=&quot;17&quot; height=&quot;1&quot;></td>
<td bgcolor=&quot;#D2D2CA&quot; width=&quot;481&quot; valign=&quot;bottom&quot;>&nbsp; </td>
<td bgcolor=&quot;#D2D2CA&quot; align=&quot;right&quot; width=&quot;164&quot;><object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot; width=&quot;164&quot; height=&quot;66&quot;>
<param name=&quot;movie&quot; value=&quot;flash/FREEDELIV.swf&quot;>
<param name=&quot;quality&quot; value=&quot;high&quot;>
<embed src=&quot;flash/FREEDELIV.swf&quot; quality=&quot;high&quot; pluginspage=&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;164&quot; height=&quot;66&quot;></embed></object></td>
</tr>
<tr>
<td width=&quot;17&quot;><img src=&quot;images/page/topleft.gif&quot; width=&quot;17&quot; height=&quot;26&quot;></td>
<td class=&quot;dark&quot; background=&quot;images/page/topbg.gif&quot; height=&quot;26&quot; align=&quot;right&quot; valign=&quot;bottom&quot; colspan=&quot;2&quot;><div align=&quot;left&quot;><a href=&quot;index.htm&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Image26','','images/buttons/homeov.gif',1)&quot;><img src=&quot;images/buttons/home.gif&quot; alt=&quot;Home&quot; name=&quot;Image26&quot; width=&quot;80&quot; height=&quot;16&quot; border=&quot;0&quot;></a><a href=&quot;About.htm&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Image27','','images/buttons/aboutov.gif',1)&quot;><img src=&quot;images/buttons/about.gif&quot; alt=&quot;About&quot; name=&quot;Image27&quot; width=&quot;80&quot; height=&quot;16&quot; border=&quot;0&quot;></a><a href=&quot;Contact.htm&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Image29','','images/buttons/contactov.gif',1)&quot;><img src=&quot;images/buttons/contact.gif&quot; alt=&quot;Contact&quot; name=&quot;Image29&quot; width=&quot;80&quot; height=&quot;16&quot; border=&quot;0&quot;></a><a href=&quot;Help.htm&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Image30','','images/buttons/helpov.gif',1)&quot;><img src=&quot;images/buttons/help.gif&quot; alt=&quot;Help&quot; name=&quot;Image30&quot; width=&quot;80&quot; height=&quot;16&quot; border=&quot;0&quot;></a><a href=&quot;Terms.htm&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Image31','','images/buttons/termov.gif',1)&quot;><img src=&quot;images/buttons/terms.gif&quot; alt=&quot;Terms&quot; name=&quot;Image31&quot; width=&quot;80&quot; height=&quot;16&quot; border=&quot;0&quot;></a>
</div></td>
</tr>
<tr>
<td colspan=&quot;4&quot; bgcolor=&quot;#AAAAAF&quot;><img src=&quot;images/page/clearpixel.gif&quot; width=&quot;1&quot; height=&quot;1&quot;></td>
</tr>
</table>
<table height=&quot;1704&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<tr>
<td width=&quot;136&quot; height=&quot;1704&quot; align=&quot;center&quot; valign=&quot;top&quot; bgcolor=&quot;#F7F7F4&quot; class=&quot;dark&quot;>
<object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot; width=&quot;125&quot; height=&quot;78&quot; align=&quot;middle&quot;>
<param name=&quot;movie&quot; value=&quot;flash/homepage.swf&quot;>
<param name=&quot;quality&quot; value=&quot;high&quot;>
<embed src=&quot;flash/homepage.swf&quot; width=&quot;125&quot; height=&quot;78&quot; align=&quot;middle&quot; quality=&quot;high&quot; pluginspage=&quot; type=&quot;application/x-shockwave-flash&quot;></embed></object>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<p>&nbsp;</p>
<p><img src=&quot;images/page/leftline.gif&quot; width=&quot;136&quot; height=&quot;1&quot;></p>
<p>&nbsp;</p>
<p><img src=&quot;images/page/avocado11.jpg&quot; alt=&quot;Microsoft Authorised Education Reseller&quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado3.jpg&quot; alt=&quot;Microsoft&quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado.jpg&quot; alt=&quot;Federation of Small Businesses Member&quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado5.jpg&quot; alt=&quot;ATI Graphics &quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado4.jpg&quot; alt=&quot;Symantec Software Partner&quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado6.jpg&quot; alt=&quot;Western Digital Harddrive&quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado8.jpg&quot; alt=&quot;Corel&quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado7.jpg&quot; alt=&quot;Better Payment Practice&quot; width=&quot;110&quot; height=&quot;110&quot;></p>
<p><img src=&quot;images/page/avocado2.jpg&quot; alt=&quot;Credit Cards&quot; width=&quot;110&quot; height=&quot;110&quot; border=&quot;0&quot;></p>
</td>
<td valign=&quot;top&quot; background=&quot;images/page/leftbg.gif&quot; width=&quot;1&quot;>&nbsp;</td>
<td valign=&quot;top&quot; width=&quot;486&quot;><br>

<table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
<tr>
<td width=&quot;1&quot; height=&quot;1672&quot;>&nbsp;</td>
<td valign=&quot;top&quot; width=&quot;484&quot;>
<!-- #BeginEditable &quot;Body&quot; -->
<table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
<tr>
<td colspan=&quot;3&quot;><img src=&quot;images/page/welcome.gif&quot; width=&quot;120&quot; height=&quot;16&quot;></td>
</tr>
<tr bgcolor=&quot;#AAAAAF&quot;>
<td colspan=&quot;3&quot;><img src=&quot;images/page/clearpixel.gif&quot; width=&quot;1&quot; height=&quot;1&quot;></td>
</tr>
<tr>
<td height=&quot;1770&quot; background=&quot;images/page/leftbg.gif&quot;> <img src=&quot;images/page/clearpixel.gif&quot; width=&quot;23&quot; height=&quot;8&quot;></td>
<td width=&quot;438&quot; valign=&quot;top&quot;>
<table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot; align=&quot;center&quot;>
<tr>
<td width=&quot;52%&quot; height=&quot;1452&quot;>
<p>&nbsp;</p>
<div id=&quot;Layer15&quot; style=&quot;position:absolute; width:147px; height:28px; z-index:20; left: 283px; top: 135px;&quot;><img src=&quot;images/page/topdealshardware.gif&quot; width=&quot;244&quot; height=&quot;23&quot;></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:394px; top:407px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product2.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:505px; top:407px; width:94px; height:109px; z-index:4&quot;>
<p><strong>SONY VAIO INTEL PENTIUM 4 2.6</strong></p>
</div>
<p>&nbsp;</p>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:394px; top:380px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><b><br>
</b></p>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:504px; top:175px; width:101px; height:109px; z-index:4&quot;><font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><strong>CREATIVE LABS 128MB USB MP3 PLAYER &amp; DATA STICK</strong> <br>
</font></div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:390px; top:175px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product3.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer7&quot; style=&quot;position:absolute; left:391px; top:745px; width:208px; height:35px; z-index:7&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;250.00</font></span></p>
</div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:510px; top:287px; width:85px; height:20px; z-index:10&quot;><a href=&quot;MEMORYSTICKS006.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:286px; top:743px; width:85px; height:20px; z-index:10&quot;><a href=&quot;SPEAKERS001.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:156px; top:606px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:157px; top:849px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer11&quot; style=&quot;position:absolute; left:297px; top:874px; width:243px; height:22px; z-index:12&quot;><img src=&quot;images/page/topdealssoftware.gif&quot; width=&quot;244&quot; height=&quot;23&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:277px; top:913px; width:96px; height:109px; z-index:4; font-weight: bold;&quot;>SYMANTEC NORTON ANTIVIRUS 2004 oem </div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:157px; top:854px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:375px; top:849px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<p>&nbsp;</p>
<div id=&quot;Layer2&quot; style=&quot;position:absolute; left:163px; top:913px; width:108px; height:111px; z-index:8&quot;><img src=&quot;images/homepage%20offers/product6.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; left:163px; top:1028px; width:205px; height:45px; z-index:5&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;27.52</font></span><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
<p>&nbsp;</p>
<p></p>
<p><font color=&quot;#FF0000&quot;></font></p>
<p>&nbsp;</p>
</div>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; left:168px; top:1247px; width:205px; height:50px; z-index:5&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;141.58</font></span><span class=&quot;style4&quot;><font size=&quot;3&quot;></font></span></p>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:156px; top:1093px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer2&quot; style=&quot;position:absolute; left:387px; top:914px; width:108px; height:111px; z-index:8&quot;><img src=&quot;images/homepage%20offers/product9.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<p>&nbsp;</p>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:279px; top:1028px; width:85px; height:20px; z-index:10&quot;><a href=&quot;ANTIVIRUS002.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:284px; top:1247px; width:85px; height:20px; z-index:10&quot;><a href=&quot;OFFICE003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:385px; top:1093px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:500px; top:913px; width:96px; height:109px; z-index:4; font-weight: bold;&quot;>SYMANTEC NORTON INTERNET SECURITY 2004 oem </div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; left:389px; top:1029px; width:205px; height:46px; z-index:5&quot;>
<p class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;34.81</font></p>
<p><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:503px; top:1030px; width:85px; height:20px; z-index:10&quot;><a href=&quot;ANTIVIRUS003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:505px; top:1248px; width:85px; height:20px; z-index:10&quot;><a href=&quot;WEBDESIGN005.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:156px; top:1549px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:375px; top:1543px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:156px; top:1543px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:375px; top:1549px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:156px; top:1322px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer2&quot; style=&quot;position:absolute; left:171px; top:1356px; width:108px; height:111px; z-index:8&quot;><img src=&quot;images/homepage%20offers/product11.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div> <p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; left:169px; top:1472px; width:205px; height:46px; z-index:5&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;168.94</font></span><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:285px; top:1471px; width:85px; height:20px; z-index:10&quot;><a href=&quot;WEBDESIGN004.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:496px; top:1133px; width:101px; height:109px; z-index:4&quot;><strong>MACROMEDIA<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> DREAMWEAVER MX 2004 - EDUCATIONAL</font></strong></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p>&nbsp;</p> </td>
<td width=&quot;48%&quot;> <div id=&quot;Layer9&quot; style=&quot;position:absolute; left:284px; top:516px; width:85px; height:20px; z-index:10&quot;><a href=&quot;GRAPHICSCARDS003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:510px; top:518px; width:85px; height:20px; z-index:10&quot;><a href=&quot;LAPTOPS005.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:512px; top:743px; width:85px; height:20px; z-index:10&quot;><a href=&quot;SATA008.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<p>&nbsp;</p>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:392px; top:634px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product5.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:506px; top:636px; width:97px; height:109px; z-index:4&quot;>
<p><strong>WESTERN DIGITAL<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> 250GB SATA HDD </font></strong><font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:375px; top:854px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:167px; top:630px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product4.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:279px; top:631px; width:103px; height:109px; z-index:4; font-weight: bold;&quot;>
<p>SONY SRS-P7 PC SPEAKERS </p>
<p>&nbsp;</p>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer7&quot; style=&quot;position:absolute; left:167px; top:739px; width:208px; height:35px; z-index:7&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;23.49</font></span></p>
<p>&nbsp;</p>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:397px; top:607px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:279px; top:1133px; width:101px; height:109px; z-index:4&quot;><strong>MICROSOFT<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> OFFICE 2003 BASIC oem </font></strong></div>
<p>&nbsp;</p>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:390px; top:1322px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:165px; top:405px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product10.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:277px; top:409px; width:96px; height:109px; z-index:4&quot;>
<p><strong>PINE XFX NVIDIA FX5200 256MB <span class=&quot;style3&quot;>DVI/TV-OUT</span></strong></p>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:169px; top:1132px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product7.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer7&quot; style=&quot;position:absolute; left:165px; top:517px; width:208px; height:57px; z-index:7&quot;>
<p class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;84.76</font></p>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:385px; top:1133px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product8.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:281px; top:1357px; width:101px; height:109px; z-index:4&quot;><strong>MICROSOFT<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> FRONTPAGE 2003 </font></strong></div>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; left:388px; top:1248px; width:205px; height:25px; z-index:5&quot;>
<p class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;109.41</font><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<p>&nbsp;</p>
<div id=&quot;Layer2&quot; style=&quot;position:absolute; left:394px; top:1356px; width:108px; height:111px; z-index:8&quot;><img src=&quot;images/homepage%20offers/product12.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div> <div id=&quot;Layer5&quot; style=&quot;position:absolute; left:393px; top:1470px; width:205px; height:46px; z-index:5&quot;>
<p class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;145.76</font></p>
<p><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:508px; top:1470px; width:85px; height:20px; z-index:10&quot;><a href=&quot;DTP002.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:506px; top:1355px; width:101px; height:109px; z-index:4&quot;><strong>MICROSOFT<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> PUBLISHER 2003 </font></strong></div>
<p><b> </b></p></td>
</tr>
<tr valign=&quot;top&quot;>
<td height=&quot;326&quot; colspan=&quot;2&quot; valign=&quot;top&quot;>
<table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;>
<tr>
<td width=&quot;51&quot; height=&quot;87&quot;><br> <img src=&quot;images/page/icon.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td width=&quot;356&quot;><a href=&quot;#&quot;><br>
</a><font color=&quot;#CC0000&quot;><a href=&quot;KEYBOARDS003.htm&quot;>MICROSOFT
WIRELESS KEYBOARD &amp; MOUSE </a></font><br>
Microsoft Wireless Keyboard &amp; Mouse, with performance and style <strong><font color=&quot;#FF0000&quot;>&pound;63.35</font></strong>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:398px; top:1646px; width:85px; height:20px; z-index:10&quot;><a href=&quot;KEYBOARDS003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:401px; top:1727px; width:85px; height:20px; z-index:10&quot;><a href=&quot;TFTFLATPANEL001.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
</td>
</tr>
<tr>
<td width=&quot;51&quot; height=&quot;74&quot;><img src=&quot;images/page/icon2.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td><a href=&quot;TFTFLATPANEL001.htm&quot;>VIEWSONIC 15&quot; VE155S/B </a><br>
Play the latest PC games on this state of the art
TFT monitor <strong><font color=&quot;#FF0000&quot;>&pound;253.68</font></strong>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:403px; top:1874px; width:85px; height:20px; z-index:10&quot;><a href=&quot;MICE003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:400px; top:1795px; width:85px; height:20px; z-index:10&quot;><a href=&quot;OFFICE001.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
</td>
</tr>
<tr>
<td width=&quot;51&quot; height=&quot;65&quot;><img src=&quot;images/page/icon3.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td><p><a href=&quot;OFFICE003.htm&quot;>ABILITY OFFICE 2002
oem</a><br>
Microsoft Office to expensive, why not try ABILITY
OFFICE 2002 <font color=&quot;#FF0000&quot;><strong>&pound;22.00</strong></font></p></td>
</tr>
<tr>
<td height=&quot;74&quot;><img src=&quot;images/page/icon4.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td><a href=&quot;MICE003.htm&quot;>MICROSOFT NOTEBOOK OPTICAL </a><br>
Use this mouse to play with the latest PC game.
<font color=&quot;#000000&quot;>&nbsp;</font><font color=&quot;#FF0000&quot;><strong>
&pound;34.12</strong></font> </td>
</tr>
</table></td>
</tr>
</table>
</td>
<td width&quot;23&quot; background=&quot;images/page/rightbg.gif&quot;> <img src=&quot;images/page/clearpixel.gif&quot; width=&quot;15&quot; height=&quot;8&quot;></td>
</tr>
<tr>
<td width=&quot;23&quot; rowspan=&quot;2&quot;><img src=&quot;images/page/innerbottomleft.gif&quot; width=&quot;23&quot; height=&quot;23&quot;></td>
<td width=&quot;438&quot;>
<img src=&quot;images/page/clearpixel.gif&quot; width=&quot;1&quot; height=&quot;22&quot;></td>
<td width=&quot;23&quot; rowspan=&quot;2&quot;><img src=&quot;images/page/br.gif&quot; width=&quot;23&quot; height=&quot;23&quot;></td>
</tr>
<tr>
<td width=&quot;438&quot; bgcolor=&quot;#AAAAAF&quot; height=&quot;1&quot;><img src=&quot;file:///C|/Documents%20and%20Settings/Administrator/My%20Documents/images/clearpixel.gif&quot; width=&quot;1&quot; height=&quot;1&quot;></td>
</tr>
</table>

<br>
</td>
<td width=&quot;10&quot;>&nbsp;</td>
</tr>
<tr>
<td width=&quot;1&quot;>&nbsp;</td>
<td class=&quot;smaller&quot; align=&quot;center&quot; width=&quot;484&quot;>
<p class=&quot;smaller&quot; ><a href=&quot;index.htm&quot;>home</a> | <a href=&quot;About.htm&quot;>about</a>
| <a href=&quot;Contact.htm&quot;>contact</a> | <a href=&quot;Terms.htm&quot;>terms</a></p>
</td>
<td width=&quot;10&quot;>&nbsp;</td>
</tr>
</table>
</td>

<td class=&quot;smaller&quot; dark&quot; valign=&quot;top&quot; width=&quot;136&quot; align=&quot;center&quot;> <div align=&quot;center&quot;><br>
<br>
<a href=&quot;search.htm&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Image32','','images/buttons/searchov.gif',1)&quot;><img src=&quot;images/buttons/search.gif&quot; alt=&quot;Search&quot; name=&quot;Image32&quot; width=&quot;80&quot; height=&quot;16&quot; border=&quot;0&quot;></a>
<br>
<br>
<img src=&quot;images/page/leftline.gif&quot; width=&quot;136&quot; height=&quot;1&quot;><br>
<br>
<img src=&quot;images/page/bananas.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;> <br>
<img src=&quot;images/page/leftline.gif&quot; width=&quot;136&quot; height=&quot;1&quot;> <br>
<div id=&quot;Layer14&quot; style=&quot;position:absolute; left:652px; top:173px; width:78px; height:79px; z-index:15&quot;>
<object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot; width=&quot;75&quot; height=&quot;74&quot;>
<param name=&quot;movie&quot; value=&quot;flash/homepagesmall1.swf&quot;>
<param name=&quot;quality&quot; value=&quot;high&quot;>
<embed src=&quot;flash/homepagesmall1.swf&quot; quality=&quot;high&quot; pluginspage=&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;75&quot; height=&quot;74&quot;></embed></object>
</div>
<br>
<br>
<img src=&quot;images/page/kiwis.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;> <br>
<br>
&nbsp; </div></td>

</tr>
</table>
</body>

<script language=&quot;JavaScript&quot;>
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>


html ends
 
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p>&nbsp;</p> </td>
<td width=&quot;48%&quot;> <div id=&quot;Layer9&quot; style=&quot;position:absolute; left:284px; top:516px; width:85px; height:20px; z-index:10&quot;><a href=&quot;GRAPHICSCARDS003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:510px; top:518px; width:85px; height:20px; z-index:10&quot;><a href=&quot;LAPTOPS005.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:512px; top:743px; width:85px; height:20px; z-index:10&quot;><a href=&quot;SATA008.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<p>&nbsp;</p>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:392px; top:634px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product5.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:506px; top:636px; width:97px; height:109px; z-index:4&quot;>
<p><strong>WESTERN DIGITAL<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> 250GB SATA HDD </font></strong><font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:375px; top:854px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:167px; top:630px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product4.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:279px; top:631px; width:103px; height:109px; z-index:4; font-weight: bold;&quot;>
<p>SONY SRS-P7 PC SPEAKERS </p>
<p>&nbsp;</p>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id=&quot;Layer7&quot; style=&quot;position:absolute; left:167px; top:739px; width:208px; height:35px; z-index:7&quot;>
<p><span class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;23.49</font></span></p>
<p>&nbsp;</p>
</div>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:397px; top:607px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:279px; top:1133px; width:101px; height:109px; z-index:4&quot;><strong>MICROSOFT<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> OFFICE 2003 BASIC oem </font></strong></div>
<p>&nbsp;</p>
<div id=&quot;Layer8&quot; style=&quot;position:absolute; left:390px; top:1322px; width:218px; height:13px; z-index:9&quot;>
<hr>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:165px; top:405px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product10.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:277px; top:409px; width:96px; height:109px; z-index:4&quot;>
<p><strong>PINE XFX NVIDIA FX5200 256MB <span class=&quot;style3&quot;>DVI/TV-OUT</span></strong></p>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:169px; top:1132px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product7.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer7&quot; style=&quot;position:absolute; left:165px; top:517px; width:208px; height:57px; z-index:7&quot;>
<p class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;84.76</font></p>
</div>
<div id=&quot;Layer3&quot; style=&quot;position:absolute; left:385px; top:1133px; width:65px; height:66px; z-index:3&quot;><img src=&quot;images/homepage%20offers/product8.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:281px; top:1357px; width:101px; height:109px; z-index:4&quot;><strong>MICROSOFT<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> FRONTPAGE 2003 </font></strong></div>
<div id=&quot;Layer5&quot; style=&quot;position:absolute; left:388px; top:1248px; width:205px; height:25px; z-index:5&quot;>
<p class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;109.41</font><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<p>&nbsp;</p>
<div id=&quot;Layer2&quot; style=&quot;position:absolute; left:394px; top:1356px; width:108px; height:111px; z-index:8&quot;><img src=&quot;images/homepage%20offers/product12.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;></div> <div id=&quot;Layer5&quot; style=&quot;position:absolute; left:393px; top:1470px; width:205px; height:46px; z-index:5&quot;>
<p class=&quot;style1&quot;><font size=&quot;3&quot;>&pound;145.76</font></p>
<p><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;><br>
</font></p>
</div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:508px; top:1470px; width:85px; height:20px; z-index:10&quot;><a href=&quot;DTP002.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer4&quot; style=&quot;position:absolute; left:506px; top:1355px; width:101px; height:109px; z-index:4&quot;><strong>MICROSOFT<font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;> PUBLISHER 2003 </font></strong></div>
<p><b> </b></p></td>
</tr>
<tr valign=&quot;top&quot;>
<td height=&quot;326&quot; colspan=&quot;2&quot; valign=&quot;top&quot;>
<table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;>
<tr>
<td width=&quot;51&quot; height=&quot;87&quot;><br> <img src=&quot;images/page/icon.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td width=&quot;356&quot;><a href=&quot;#&quot;><br>
</a><font color=&quot;#CC0000&quot;><a href=&quot;KEYBOARDS003.htm&quot;>MICROSOFT
WIRELESS KEYBOARD &amp; MOUSE </a></font><br>
Microsoft Wireless Keyboard &amp; Mouse, with performance and style <strong><font color=&quot;#FF0000&quot;>&pound;63.35</font></strong>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:398px; top:1646px; width:85px; height:20px; z-index:10&quot;><a href=&quot;KEYBOARDS003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:401px; top:1727px; width:85px; height:20px; z-index:10&quot;><a href=&quot;TFTFLATPANEL001.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
</td>
</tr>
<tr>
<td width=&quot;51&quot; height=&quot;74&quot;><img src=&quot;images/page/icon2.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td><a href=&quot;TFTFLATPANEL001.htm&quot;>VIEWSONIC 15&quot; VE155S/B </a><br>
Play the latest PC games on this state of the art
TFT monitor <strong><font color=&quot;#FF0000&quot;>&pound;253.68</font></strong>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:403px; top:1874px; width:85px; height:20px; z-index:10&quot;><a href=&quot;MICE003.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
<div id=&quot;Layer9&quot; style=&quot;position:absolute; left:400px; top:1795px; width:85px; height:20px; z-index:10&quot;><a href=&quot;OFFICE001.htm&quot;><img src=&quot;images/buttons/moreinfo.gif&quot; width=&quot;90&quot; height=&quot;18&quot; border=&quot;0&quot;></a></div>
</td>
</tr>
<tr>
<td width=&quot;51&quot; height=&quot;65&quot;><img src=&quot;images/page/icon3.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td><p><a href=&quot;OFFICE003.htm&quot;>ABILITY OFFICE 2002
oem</a><br>
Microsoft Office to expensive, why not try ABILITY
OFFICE 2002 <font color=&quot;#FF0000&quot;><strong>&pound;22.00</strong></font></p></td>
</tr>
<tr>
<td height=&quot;74&quot;><img src=&quot;images/page/icon4.jpg&quot; width=&quot;40&quot; height=&quot;40&quot;></td>
<td><a href=&quot;MICE003.htm&quot;>MICROSOFT NOTEBOOK OPTICAL </a><br>
Use this mouse to play with the latest PC game.
<font color=&quot;#000000&quot;>&nbsp;</font><font color=&quot;#FF0000&quot;><strong>
&pound;34.12</strong></font> </td>
</tr>
</table></td>
</tr>
</table>
</td>
<td width&quot;23&quot; background=&quot;images/page/rightbg.gif&quot;> <img src=&quot;images/page/clearpixel.gif&quot; width=&quot;15&quot; height=&quot;8&quot;></td>
</tr>
<tr>
<td width=&quot;23&quot; rowspan=&quot;2&quot;><img src=&quot;images/page/innerbottomleft.gif&quot; width=&quot;23&quot; height=&quot;23&quot;></td>
<td width=&quot;438&quot;>
<img src=&quot;images/page/clearpixel.gif&quot; width=&quot;1&quot; height=&quot;22&quot;></td>
<td width=&quot;23&quot; rowspan=&quot;2&quot;><img src=&quot;images/page/br.gif&quot; width=&quot;23&quot; height=&quot;23&quot;></td>
</tr>
<tr>
<td width=&quot;438&quot; bgcolor=&quot;#AAAAAF&quot; height=&quot;1&quot;><img src=&quot;file:///C|/Documents%20and%20Settings/Administrator/My%20Documents/images/clearpixel.gif&quot; width=&quot;1&quot; height=&quot;1&quot;></td>
</tr>
</table>

<br>
</td>
<td width=&quot;10&quot;>&nbsp;</td>
</tr>
<tr>
<td width=&quot;1&quot;>&nbsp;</td>
<td class=&quot;smaller&quot; align=&quot;center&quot; width=&quot;484&quot;>
<p class=&quot;smaller&quot; ><a href=&quot;index.htm&quot;>home</a> | <a href=&quot;About.htm&quot;>about</a>
| <a href=&quot;Contact.htm&quot;>contact</a> | <a href=&quot;Terms.htm&quot;>terms</a></p>
</td>
<td width=&quot;10&quot;>&nbsp;</td>
</tr>
</table>
</td>

<td class=&quot;smaller&quot; dark&quot; valign=&quot;top&quot; width=&quot;136&quot; align=&quot;center&quot;> <div align=&quot;center&quot;><br>
<br>
<a href=&quot;search.htm&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Image32','','images/buttons/searchov.gif',1)&quot;><img src=&quot;images/buttons/search.gif&quot; alt=&quot;Search&quot; name=&quot;Image32&quot; width=&quot;80&quot; height=&quot;16&quot; border=&quot;0&quot;></a>
<br>
<br>
<img src=&quot;images/page/leftline.gif&quot; width=&quot;136&quot; height=&quot;1&quot;><br>
<br>
<img src=&quot;images/page/bananas.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;> <br>
<img src=&quot;images/page/leftline.gif&quot; width=&quot;136&quot; height=&quot;1&quot;> <br>
<div id=&quot;Layer14&quot; style=&quot;position:absolute; left:652px; top:173px; width:78px; height:79px; z-index:15&quot;>
<object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot; width=&quot;75&quot; height=&quot;74&quot;>
<param name=&quot;movie&quot; value=&quot;flash/homepagesmall1.swf&quot;>
<param name=&quot;quality&quot; value=&quot;high&quot;>
<embed src=&quot;flash/homepagesmall1.swf&quot; quality=&quot;high&quot; pluginspage=&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;75&quot; height=&quot;74&quot;></embed></object>
</div>
<br>
<br>
<img src=&quot;images/page/kiwis.jpg&quot; width=&quot;110&quot; height=&quot;110&quot;> <br>
<br>
&nbsp; </div></td>

</tr>
</table>
</body>

<script language=&quot;JavaScript&quot;>
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>

html ends
 
Is it possible to post a link to your site? That would make for a much easier checking.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top