Javascript help

admin

Administrator
Staff member
:confused:

I have the following snippet of code, and for the life of me I can't get this to work. Can someone please take a look and tell me where I went wrong? It doesn't pop up on the page load. Thanks. It's been one of those days.

Mark

<head>
<title>Confirmation</title>

<script language="JavaScript">
function new()
{ window.open('test.cfm','myWindow','width=300,height=300,screenx=200,screeny=200,top=200,left=200,alw aysraised=yes');
}
</script>

</head>

<body onload="javascript:new()">
 
Back
Top