the easiest way would be to add "_blank" to the 'getURL(url)' line in the mcEvents() function. eg-
PHP:<?php
// change the getURL(url) part
mc1.onRelease=function(){
getURL(url);
}
// to this
mc1.onRelease=function(){
getURL(url,"_blank");
}
?>
goodluck!
