Entiendo lo de la restricción de los enlaces, pero con poner bien el código html y explicar bien no hubiera hecho falta el mensaje privado. Bueno fijate si esto te sirve:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script>
function formCheck(form) {
if (form.uname.value == "") {alert( "Please enter your username. ");return false ;}
window.open('','ventana','width=500,height=500')
}
</script>
<title>test</title>
</head>
<body>
<form target="ventana" id="form1" name="form1" method="post" action="http://www.google.com" onsubmit="return formCheck(this)">
<input type="submit" name="Submit" value="Enviar" />
<input name="uname" type="text" id="uname" />
</form>
</body>
</html>
Notá que el formulario tiene un atributo action definido (yo puse cualquiera, vos poné el que necesites) y también que agregué un atributo target y lo llamé
ventana. También fijate que en la función de validación agregué un window.open cuyo segundo argumento coincide con el target que le puse al formulario (
ventana).
Si no es lo que necesitabas, comentanos de nuevo