function openWin(arg) {
	var url;
 	var settings = 'resizable=no,status=no,toolbar=no,location=no,scrollbars=no,height=308,width=526';

	switch(arg) {
		case 'one':
			url = '/vividas/video01.html';
			break;
		case 'two':
			url = '/vividas/video02.html';
			break;
		case 'three':
			url = '/vividas/video03.html';
			break;
	}
	window.open(url, 'vividas', settings);
}