function MM_fullopenBrWindow(theURL) {
var features;
if (navigator.appName.charAt(0)=='M')
features = "fullscreen=1,scrollbars=0";
else if (navigator.appName.charAt(0)=='N')
features = "scrollbars=0,left=0,top=0"
+ ",width=" + screen.width
+ ",height=" + screen.height;
window.open(theURL,"celebration",features);
}
function closeWin() {
window.close();
}