
var popupwin = null;
function OpenWindow(wx, wy, url, name)
{
	//var nwidth = (window.screen.width / 2) - ((wx / 2) + 10);
	//var nheight = (window.screen.height / 2) - ((wy / 2) + 50);
  var nwidth = 0;
	var nheight = 0;
	popupwin = window.open(url, name, "location=no,directories=no,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=yes,height=" + wy + ",width=" + wx + ",left=" + nwidth + ",top=" + nheight + ",screenX=" + nwidth + ",screenY=" + nheight );
	popupwin.focus();
}

function openvideo()
{ 
OpenWindow=window.open("", "newwin", "height=250,width=250,toolbar=no,scrollbars="+scroll+",menubar=no");
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<TITLE>My Embedded Video</TITLE>")
OpenWindow.document.write("<BODY BGCOLOR=000000>")
OpenWindow.document.write("<EMBED SRC=4secjoe.avi AUTOSTART=true></EMBED>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()
self.name="main"
}

function daysleft(event_date)
{
		//date must be in format: "August 21, 2006"
    var dateofevent = event_date;
    var now = new Date();
		var then = new Date(dateofevent);
		var gap = then.getTime() - now.getTime();
		gap = Math.floor(gap / (1000 * 60 * 60 * 24))+ 1;
		document.write(gap);
}