﻿function openWindow(URL, name, width, height, resizable)
{
	var left, top;
	left=window.screen.width/2-width/2;
	top=window.screen.height/2-height/2;
	window.open(URL, name,"width="+width+", height="+height+", directories=0, location=0, menubar=0, resizable="+resizable+", scrollbars=1, status=1, toolbar=0, top="+top+", left="+left, true);
}

function showViewersClub()
{
	openWindow("/community/email_subscription/ViewersClub.aspx", "Viewers_Club", 524, 333, 0);
}

function showWinners()
{
	openWindow("/community/email_subscription/Winners.aspx", "Winners", 524, 333, 0);
}