View Single Post
Old 08-11-2005, 06:22 PM  
Serge Litehead
Confirmed User
 
Serge Litehead's Avatar
 
Industry Role:
Join Date: Dec 2002
Location: Behind the scenes
Posts: 5,190
here you go

HEAD:

<script language="JavaScript">
function openwin()
{
var arg = document.thisform.username.value;
var url = 'http://www.yourdomain.com/'+ arg;
window.open(url, 'mywindow', 'width=400,height=200,toolbar=yes,location=yes,dir ectories=yes,status=yes,menubar=yes,scrollbars=yes ,copyhistory=yes,resizable=yes');
}
</script>

----
BODY:

<form name=thisform>
<input id=text type=text name=username value=""> <input type="Button" name=submit value=enter onclick="openwin();">
</form>
__________________
Serge Litehead is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote