// AmbientVR Webcam Script
function avrCam(page) { 
	var win=null;
	var winName = "AmbientVR";
	var w = 760;
	var h = 455;
	var scrollb = "no";
	var resize = "no";
	centerWidth = (screen.width) ? (screen.width-w)/2 : 0; 
	centerHeight = (screen.height) ? (screen.height-h)/2 : 0; 
	config = 'height='+h+',width='+w+',top='+centerHeight+',left='+centerWidth+',scrollbars='+scrollb+',resizable='+resize; 
	win = window.open(page,winName,config); 
}