﻿// JScript File

function ShowPopup(hoveritem)
{
hp = document.getElementById("hoverpopup");

// Set position of hover-over popup
hp.style.top = hoveritem.offsetTop + 18;
hp.style.left = hoveritem.offsetLeft + 20;

// Set popup to visible
hp.style.visibility = "Visible";
}

function HidePopup()
{
hp = document.getElementById("hoverpopup");
hp.style.visibility = "Hidden";
}


{
google_ad_client = "pub-6852965382668543";

google_ad_slot = "1671683653";
google_ad_width = 728;
google_ad_height = 90;
}
 
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  
var popUpObj;

function popUp(url) 
{

    popUpObj = window.open(url, "Popup", "toolbar=no,scrollbars=no,location=no" +

    ",statusbar=no,menubar=no,resizable=0,width=100," +

    "height=100,left = 490,top = 262");

    popUpObj.focus();



} 
