// used in /videos/
function playVideo(link) {
	winref = window.open(link,"videos","width=812,height=720,top=100,left=100,scrollbars=no,scroll=no,center=no,location=no,toolbars=no,status=no,resize=yes");
	winref.focus();
}

function enlargeImage(link){
	windowref = window.open(link,"imageEnlarge","width=812,height=720,top=100,left=100,scrollbars=no,scroll=no,center=no,location=no,toolbars=no,status=no,resize=yes");
	windowref.focus();

	return false;
}

function genericPopup(link, name, width, height, scrollbars){

    if(!scrollbars){scrollbars = "no";}

	windowref = window.open(link,name,"width="+width+",height="+height+",top=100,left=100,scrollbars="+scrollbars+",scroll=yes,center=no,location=no,toolbars=no,status=no,resize=yes");
	windowref.focus();

	return false;
}

/**
 * @todo no where else to put this without another file!
 */
function TrackEvent(Group, Origin, Data)
{
	pageTracker._trackPageview('/EventTracker/'+Group+'/'+Origin+'/'+Data+'/');
}

/**
 * @todo no where else to put this without another file!
 */
function TrackEventRedirect(Group, Origin, Data, Redirect)
{
	pageTracker._trackPageview('/EventTracker/'+Group+'/'+Origin+'/'+Data+'/');
	document.location.href=Redirect;
}



