// Jewish Card - JavaScript Global Functions
// Created March 29, 2010

function OpenDetailsWindow(c, id)
{
var s="DetailsWindow".id;
detailswin = window.open(c, s, 'width=700,height=500,toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
detailswin.focus();
}

function OpenDetailsWindow2(c, id)
{
var s="DetailsWindow".id;
detailswin = window.open(c, s, 'width=700,height=750,toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
detailswin.focus();
}

function OpenDetailsWindowVS(c, id, w, h)
{
var s="DetailsWindow".id;
detailswin = window.open(c, s, 'width='+w+',height='+h+',toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
detailswin.focus();
}

// Add new functions here...


// .. End add new functions
// Google Analytics Tracking - User Account: UA-12851090-1
// Note:  Keep this set of code LAST in this file. 
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-12851090-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();


