// JavaScript Document
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function header_image_DoFSCommand(command, args) {
var header_imageObj = isInternetExplorer ? document.all.header_image : document.header_image;
//
// Place your code here.
// if(command == "upload_photo"){
openPop('/upload_bandimage.php', 'upload_photo', 250, 350);
// }
//
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write('\n');
}
//-->
function openPop(url,name,sizex,sizey) {
newwin = window.open(url, name, "width=" + sizex + ",height=" + sizey + ",toolbar=no,location=no,directories=no,status=0,resizable=no,scrollbars=auto,menubar=no");
newwin.moveTo(((screen.width/2)-(sizex/2)),((screen.height/2)-(sizey/2)));
}
function flash_reloadImage(){
window.document.header_image.GotoFrame(1);
}
function upload_DoFSCommand(command, args) {
var uploadObj = isInternetExplorer ? document.all.upload : document.upload;
//
make_list();
refresh_tracks();
//
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write('\n');
}
//-->