// JavaScript Document<SCRIPT LANGUAGE="javascript"><!--//a small sniffer to detect platform and browser type and  attach different style sheets accordingly.var detect = navigator.userAgent.toLowerCase();// OS detectvar win = (detect.indexOf("win") !=-1);var mac = (detect.indexOf("mac") !=-1);// Browser detectvar opera = (detect.indexOf("opera") != -1);var xplore = (!opera && detect.indexOf("msie") !=-1);var scape = (!opera && detect.indexOf("compatible") ==-1);// Version detectvar num = navigator.appVersion.charAt(0);if (opera) num = detect.charAt(detect.indexOf('opera') + 6);if (xplore && (detect.indexOf("5.") != -1)){	num = 5;}if (xplore && num < 3){	num = 3;}// If the platform is Macintosh, use the Macintosh style sheet.if ((mac && scape) || (mac && xplore && num == 5)) {   document.write('<link rel="stylesheet" href="http://www.musictoyz.com/css/infopop-mac.css">');// Otherwise, use the Windows Netscape style sheet. }  else{   if (win && scape) {   document.write('<link rel="stylesheet" href="http://www.musictoyz.com/css/infopop.css">');// Otherwise, use the Windows style sheet. } else{   document.write('<link rel="stylesheet" href="http://www.musictoyz.com/css/infopop.css">'); }}