Weird asfunction: problem

http://www.criscam.com/josh/test/index.html

Click on “Kyoritsu test equipment” on the front page.
Now, two movies load up. One on top, and one on bottom.

There are text links in each that are supposed to open a pop up menu. They’re called “Specifications Catalog PDF” on the bottom, and “Technical Specifications here” on the top display (after the EF1 intro loads).

When you click technical specifications on top, it opens the window. Its dynamic text using this:

asfunction:_root.specs

and it loads this function in the main movie:


//opens up the contact menu
function specs() {
getURL("javascript:var mypopup = window.open('specs.htm','Specs','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=200,height=290,top='+eval((screen.availHeight - 300) / 3)+',left='+eval((screen.availWidth - 500) / 2));mypopup.focus();");
}

Now, on the bottom, the other dynamic link uses the EXACT SAME line:

asfunction:_root.specs

both movies are loaded like this:


function testers() {
	loadMovie("test_1.swf", "container_1");
	loadMovie("test_2.swf", "container_2");
}

But for some reason, doesn’t work when you click on it. BUT you can right click on the link, click “open in new window” and it pops up.

WTF?!?!?