function introtext(text,textb)
{
	LeftPosition = (screen.width) ? (screen.width - 505) / 2 : 0;
	TopPosition = (screen.height) ? (screen.height - 453) / 2 : 0;
	editor = window.open('intro.asp?text='+text+'&textb='+textb+'','','width=505,height=453,scrollbars=no,mainbar=no,statusbar=no,left='+LeftPosition+',top='+TopPosition+'');
}

function show_fotos(id) {
	document.getElementById('fotos_'+id).style.display = 'block';
}

function open_w(url,w,h) {
	LeftPosition = (screen.width) ? (screen.width - w) / 2 : 0;
	TopPosition = (screen.height) ? (screen.height - h) / 2 : 0;
	
	window.open (url,'','statusbar=no,mainbar=no,toolbar=no,width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+'');
}

function open_ws(url,w,h) {
	LeftPosition = (screen.width) ? (screen.width - w) / 2 : 0;
	TopPosition = (screen.height) ? (screen.height - h) / 2 : 0;
	
	window.open (url,'','scrollbars=yes,statusbar=no,mainbar=no,toolbar=no,width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+'');
}