function newWindow(sourceFile,windowWidth,windowHeight){
if (navigator.appName.indexOf('Netscape') != -1){
nswidth=windowWidth-2
nsheight=windowHeight-2
openString = 'scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,left=0,top=0,width=' + nswidth + ',height=' + nsheight
}
else{
openString = 'scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,left=0,top=0,width=' + windowWidth + ',height=' + windowHeight
}
globalOpenString = openString
globalSourceFile = sourceFile
detailWindow = window.open(globalSourceFile,'flash',globalOpenString)
detailWindow.focus()
}
