Saludos a todos.
Es la primera vez que empleo un foro y soy un novatillo peo necesiro vuestra ayuda.
Me sale este error cuando ejecuto este código que lo he sacado de :
http://simplythebest.net/scripts/
<!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" />
<title>Documento sin título</title>
<script language="javascript">
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left ='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
</script>
</head>
<body>
<a href="http://simplythebest.net" onclick="NewWindow(this.href,'name','500','500','y es');return false">SimplytheBest.net</a>
</body>
</html>
Comprobareis que salen 6 errores pero funciona . ¿Como se puede solucionar ?