<!--

function MM_swapImgRestore() { //v2.0
  if (document.MM_swapImgData != null)
    for (var i=0; i<(document.MM_swapImgData.length-1); i+=2)
      document.MM_swapImgData[i].src = document.MM_swapImgData[i+1];
}

function MM_swapImage() { //v2.0
  var i,j=0,objStr,obj,swapArray=new Array,oldArray=document.MM_swapImgData;
  for (i=0; i < (MM_swapImage.arguments.length-2); i+=3) {
    objStr = MM_swapImage.arguments[(navigator.appName == 'Netscape')?i:i+1];
    if ((objStr.indexOf('document.layers[')==0 && document.layers==null) ||
        (objStr.indexOf('document.all[')   ==0 && document.all   ==null))
      objStr = 'document'+objStr.substring(objStr.lastIndexOf('.'),objStr.length);
    obj = eval(objStr);
    if (obj != null) {
      swapArray[j++] = obj;
      swapArray[j++] = (oldArray==null || oldArray[j-1]!=obj)?obj.src:oldArray[j];
      obj.src = MM_swapImage.arguments[i+2];
  } }
  document.MM_swapImgData = swapArray; //used for restore
}

var LoadImages=new Array()
function PreLoadImages()
	{
	for (i=0;i<PreLoadImages.arguments.length;i++)
		{
		LoadImages[i]=new Image()
		LoadImages[i].src=PreLoadImages.arguments[i]
		}
	}

//Global window handle and count
var win = null;
var count = 0;

function ManageWindowWithScroll(href, hwnd, w, h) {
            var specs = "";
            var screenw = 480;
			var screenh = 340;

    //Create a NEW window name (handle)
    hwnd += count++;
    
    if (document.all || document.layers) {
		screenw = screen.availWidth;
		screenh = screen.availHeight;
		}

    //Format the string for the window specs
    specs = 'toolbar=0,location=0,left=150,right=150,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=' + (screenw - w) / 2 + ',height=' + (screenh - h) / 2;

    // Close the window if it is open
    if( win && !win.closed ) {
    win.close();
    }

    // Open a new window
    win=window.open(href, hwnd, specs)

    // Make sure the window is ON TOP
	win.alwaysRaised = true; // Sets window to always on top
	window.alwaysLowered = true; // Anchors window to desktop

    //Reset the 'count' variable if it gets too big
    count = count > 500 ? 0 : count;
}	

function ManageWindow(href, hwnd, w, h) {
            var specs = "";

    //Create a NEW window name (handle)
    hwnd += count++;

    //Format the string for the window specs
    specs = 'toolbar=0,location=0,left=150,right=150,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width=' + w + ',height=' + h;

    // Close the window if it is open
    if( win && !win.closed ) {
    win.close();
    }

    // Open a new window
    win=window.open(href, hwnd, specs)

    // Make sure the window is ON TOP
	win.alwaysRaised = true; // Sets window to always on top
	window.alwaysLowered = true; // Anchors window to desktop

    //Reset the 'count' variable if it gets too big
    count = count > 500 ? 0 : count;
}	


function mOvr(src,clrOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor = clrOver; 
		
	} 
} 

function mOut(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn;
		
	} 
}
function mClk(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}

	
//-->
