I am having an error on page when I click on the link in blue. It is supposed to call up an email form.
<A HREF=javascript:ContactMe('contact.htm')>Contact</a>
Below is the script which I have place between the <head> tags on my page.
<script LANGUAGE="JavaScript"><!-- Begin
function ContactMe(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "',
'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,
width=550,height=500,left = 50,top = 50');");
}
// End --></SCRIPT>
Could someone tell me whether it is an php.ini setting problem or the script itself. I've tried changing the section URL (hilighted in green) to the web address on my system but get same error and contact form doesnt open.
Thanks



