
function showUseConditions() {
	alert('showWindow');
	showWindow('condiciones.php', 'condiciones', 600);
	}


function showWindow(u, n, w, h) {
	if (w == null)
		w = '100%';
	
	if (h == null)
		h = '100%';
	
	window.open(url, n, 'width='+w+',height='+h+',scrollbars=YES,Toolbar=NO,Menubar=NO,Titlebar=YES');
	}

