Thank you for replying
My dilema is that I want to create hyperlink text with behaviors to open a browser window without leaving the origianl page
I have no problems with rollovers or images but if I use text I cannot get it to attach the behavior to it without creating a hyperlink
Once i do that it opens a seperate browser window but also changes the page
See my example below
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF">
<p>Here is an example:</p>
<p> </p>
<div id="Layer1" style="position:absolute; width:273px; height:115px; z-index:1">
<pre>HI my name is sanje
<a href="
onClick="MM_openBrWindow('
here to enter this site</a></pre>
</div>
<p> </p>
</body>
</html>
any ideas?
Again thanks for replying