Hi
Ich hab mich mal an dem Problem versucht und bin zu einer Loesung gekommen:
<html>
<head>
<script>
function check()
{
document.form1.field1.blur();
window.setTimeout("losgehts()",1000);
// window.location.href = (URL)
}
function losgehts() {
URL ="onmouseover.asp?PID=" + document.form1.field1.value;
alert(URL);
}
</script>
</head>
<body>
<form method="post" name="form1">
<input type="Text" name="field1" value="" size="15" maxlength="15"><br>
<A href="onmouseover.asp#" onmouseover=" check();return true;"><IMG height=21 src="bild.jpg" width=97 ></a>
</form>
</body>
</html>
Tschau Holger