// JavaScript Document

function PlayVideo(filename){
	LeftPosition=(screen.width)?(screen.width-400)/2:100;TopPosition=(screen.height)?(screen.height-400)/2-20:100;
	settings='width='+400+',height='+400+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	win=window.open('/assets_movs/player.html?'+filename,'media',settings);
	if(win.focus){win.focus();}
}

function newspop(){
	LeftPosition=(screen.width)?(screen.width-400)/2:100;TopPosition=(screen.height)?(screen.height-550)/2-20:100;
	settings='width='+400+',height='+550+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	win=window.open('/news/index.html','news',settings);
	if(win.focus){win.focus();}
}

function popupform() {

	LeftPosition=(screen.width)?(screen.width-400)/2:100;TopPosition=(screen.height)?(screen.height-550)/2-20:100;
	settings='width='+400+',height='+550+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	win=window.open('/request/showreel.html','form',settings);
	if(win.focus){win.focus();}

}
