function getURLValue(varname){  var url = window.location.href;  var qparts = url.split("?");  if (qparts.length < 2)  {    return -1;	//document.alert("no args");  }  var query = qparts[1];  var vars = query.split("&");  // Initialize the value with "" as default  var value = -1;  // Iterate through vars, checking each one for varname  for (i=0;i<vars.length;i++)  {    // Split the variable by =, which splits name and value    var parts = vars[i].split("=");        // Check if the correct variable    if (parts[0] == varname)    {      // Load value into variable      value = parts[1];      // End the loop      break;    }  }    // Convert escape code  value = unescape(value);  // Convert "+"s to " "s  value.replace(/\+/g," ");  // Return the value  return value;}function MM_checkPlugin(plgIn, theURL, altURL, autoGo) { //v4.0  var ok=false; document.MM_returnValue = false;  with (navigator) if (appName.indexOf('Microsoft')==-1 || (plugins && plugins.length)) {    ok=(plugins && plugins[plgIn]);  } else if (appVersion.indexOf('3.1')==-1) { //not Netscape or Win3.1    if (plgIn.indexOf("Flash")!=-1 && window.MM_flash!=null) ok=window.MM_flash;    else if (plgIn.indexOf("Director")!=-1 && window.MM_dir!=null) ok=window.MM_dir;    else ok=autoGo; }  if (!ok) theURL=altURL; if (theURL) window.location=theURL;}//<body onLoad="//MM_checkPlugin('QuickTime Plug-In','','index.html',false);//MM_checkPlugin('Shockwave Flash','','index.html',false);//MM_checkPlugin('Windows Media Player','fug.html','index.html',false);return document.MM_returnValue">