// JavaScript Document
function video(url,w,h){
	
			var top = (screen.height - w) / 2;
			var left = (screen.width - h) / 2;

            window.open(url,'idwin','width='+w+', height='+h+', top='+top+', left='+left+', toolbar=no, location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no, resizable=no');

}