﻿/* used for video popups */
function PopWindow(url,w,h)
{
	var windowtop =(screen.height - h) / 2;
	var windowleft = (screen.width - w) / 2;
	win = window.open(url, "Video", "height="+h+",width="+w+",top="+windowtop+",left="+windowleft+",scrollbars=no,resize=no,menubar=no,toolbar=no,status=no")
}