//----------- Browser Detection -----------var oldTimer = true;var artistPage = null;var registerPage = null;var flashUp = null;if (parseInt(navigator.appVersion) >= 4) {  oldTimer = false;  var browserVar = navigator.platform;  var isWin = browserVar.indexOf("Win") != -1;  var isMac = browserVar.indexOf("Mac") != -1;  if (document.layers) {    var n4 = true;  } else if (document.getElementById && !(document.all)) {    var ns = true;  } else if (document.getElementById && document.all) {    var ie = true;  } else if(document.all) {    var i4 = true;  }}function openWin(pFile,pName,pWidth,pHeight) {	newWindow = window.open(pFile,pName,"statusbar=no,menubar=no,width="+pWidth+",height="+pHeight);}
