//tmtC_frameBuster
if (top.location !=self.location)
{top.location=self.location}
//tmtC_frameBusterEndfunction 

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//if (!navigator.userAgent.indexOf("Mac") != -1 && document.all && window.attachEvent)
//Fixes the rendering/redraw bug in the Content <div>
if (document.all && window.attachEvent) window.attachEvent("onload", fixWinIE);
function fixWinIE(){
	document.all.Content.style.height = document.all.Content.offsetHeight + 1;
	document.all.Content.style.paddingTop = "49px";
}
//Fix the width for IE 5 but on windows only!
if (document.all && !document.fireEvent && document.mimeType && window.attachEvent) window.attachEvent("onload", setWidth);
function setWidth(){
	document.all.Stripes.style.width = "150px";
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_jumpMenuGo(selName,targ,restore){ //v3.0
  var selObj = MM_findObj(selName); if (selObj) MM_jumpMenu(targ,selObj,restore);
}

function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01
	newWindow = window.open("","newWindow","width="+ (parseInt(imageWidth) + 8) +",height="+ (parseInt(imageHeight) + 8)+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();//Hacked to be XHTML compliant :-)
	newWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"\n"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml"  style="width:100%; height:100%">\n<title>'+alt+'</title>\n<body style="width:100%;height:100%;padding:0px;margin:0px;overflow:hidden;background:#FFFFFF;" onblur="self.close()">'); 
	if (imageType != "swf"){//Hacked to not bother with Flash code I'll never need and to make XHTML
	newWindow.document.write('<div id=\"Loading\" style=\"position:absolute;top:10px;left:10px;color:#000000;background:transparent;\">Loading...</div><img style=\"position:absolute;top:4px;left:4px;\" src=\"'+imageName+'\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\" alt=\"'+alt+'\" />');}
	newWindow.document.write('</body>\n</html>');
	newWindow.document.close();
	newWindow.focus();
}