Newbie needs help with button

windows

Guest
Hello all... I'm useing dreamweaverMX and i'm having troblem make a newbie button This is what I have <br />
<br />
input type="button" onClick="http://www.wakeosoft.com/intro.html" value="Enter Window Mode"<br />
<br />
Now my full window button works tho and its html is:<br />
<input type="button" onClick="fullwin('http://www.wakeosoft.com/intro.html')" value="Enter Full Screen Mode"><br />
<br />
So whats wrong with the non full screen button?<!--content-->use this:<br />
onclick="goplace()"<br />
<br />
and in the head of your document have:<br />
<br />
<script type="text/javascript"><!--<br />
<br />
function goplace(){<br />
location.href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.wakeosoft.com/intro.html";}<br />
<br />
//--></script><!--content-->
 
Back
Top