<!--
// COMMON JS FUNCTIONS

// Create Popup Window
var popwin;
function openWin(url) {
	popwin = window.open(url,'Video','left=100,top=100,screenX=30,screenY=30,width=380,height=220,menubar=no,scrollbars=yes,resizable=yes');

	if (window.focus) {popwin.focus()}
}
//-->