Need two pop up windows

I have a button for my portfolio that has two windows I want to open. I used javascript to remove the features of the window, but now it will only open one pop up, and not both. Any ideas?

Here is the script:
on (press){
getURL(“javascript:NewWindow=window.open(‘GermanCDlarge.jpg’,‘newWindow’,‘width=500,height=500,left=0,top=0,toolbar=No,location=No,scrollbars=Yes,status=Yes,resizeble=Yes,fullscreen=No’); void(0);”);
getURL(“javascript:NewWindow=window.open(‘germanCDpic.jpg’,‘newWindow’,‘width=750,height=320,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizeble=No,fullscreen=No’); void(0);”);
}