Here's the code I found that I'm trying to use and substitute my stuff with. Currently I need the www.w3.org to be replaced with an object not text. Is this possible?
<html>
<head>
<title>Wahid's Iframe</title>
<style type="text/css">
<!--
iframe {position: absolute;top:20%;left:30%;width:324; height:200; border:no;}
a:link{font-family:arial;font-size:18px;color:#000000;}
a:visited{font-family:arial;font-size:18px;color:#000000;}
a:hover{font-family:arial;font-size:18px;color:#ff0000;}
a:active{font-family:arial;font-size:18px;color:#0000ff;}
//-->
</style>
</head>
<body>
<iframe name="wahid">
</iframe>
<a href="http://www.ahfb.2000.com/webmaster_help_desk/showthread.php?t=2242"target="wahid" >www.ahfb</a><br/>
<a href="http://www.google.com"target="wahid" >www.w3.org</a><br/>
<a href="http://www.s3schools.com/css/default.asp"target="wahid" >www.w3.org</a><br/>
</body>
</html>
Any help is appreciated!
Thanks

