// Custom Auskalo Interative Window management JS functions - http://www.auskalo.com/
// You are free to use/modify this functions

function centeredWindow(url,name,ancho,alto,scrollbars){
	xpos = ((screen.width)/2)-(ancho/2);
	ypos = ((screen.height)/2)-(alto/2);
	features = 'width='+ancho+',height='+alto+',left='+xpos+',top='+ypos+'directories=0,resizable=0,location=0,status=0,scrollbars='+scrollbars+',toolbar=0,menubar=0,titlebar=0';
	newCenteredWindow = window.open(url,name,features);
}