function vidWin(title, file, vidW, vidH){	
    var browser = navigator.appName;
    var width = vidW + 120;
   	var height = vidH + 200;
    swidth = ((screen.width/2)-(width/2));
    sheight = ((screen.height/2)-(height/2));
	newWin = window.open('/_video/vidplayer.php?file='+file+"&width="+vidW+"&height="+vidH+"&title="+title,'vid','width='+ width +',height='+ height +',screenY='+ sheight +',screenX='+ swidth +',top=' + sheight + ',left=' + swidth + ',resizeable=no,scrollbars=no');
    newWin.focus();
	}