Sand
04-30-2006, 06:13 AM
i have the following:
<script language="javascript" type="text/javascript">
<!--
function popitup(url)
{
newwindow=window.open(url,'name','height=400,width=400');
if (window.focus) {newwindow.focus()}
return false;
}
// -->
</script></head>
and:
<html>
<body>
<input name="out" id="id" type="text" length="50" value="Customer name should be pasted here upon click..."/><p><a href="search_cust_mini.html" onclick="return popitup('popit.html')"> Search Customer Name </a>
</body>
</html>
is it possible to popup the popup next to the textfield? or create one thats less intrusive and that slides out somehow?
<script language="javascript" type="text/javascript">
<!--
function popitup(url)
{
newwindow=window.open(url,'name','height=400,width=400');
if (window.focus) {newwindow.focus()}
return false;
}
// -->
</script></head>
and:
<html>
<body>
<input name="out" id="id" type="text" length="50" value="Customer name should be pasted here upon click..."/><p><a href="search_cust_mini.html" onclick="return popitup('popit.html')"> Search Customer Name </a>
</body>
</html>
is it possible to popup the popup next to the textfield? or create one thats less intrusive and that slides out somehow?