
var newwin;

function popup(nom, alsada){
	var sw=(screen.width/2)-(396/2);
	var sh=(screen.height/2)-(alsada/2);
	newwin=window.open(nom, "SantRoc", "width=396,height="+alsada+",resizable=1,location=0,tollbar=0,directories=0,status=0,menubar=0,scrollbars=1,top="+sh+",left="+sw);
	newwin.resizeTo(396,alsada);
	newwin.focus();
}

var newwin2;

function popup2(nom, alsada, amplada){
	var sw=(screen.width/2)-(amplada/2);
	var sh=(screen.height/2)-(alsada/2);
	newwin2=window.open(nom, "SantRoc", "width="+amplada+",height="+alsada+",resizable=1,location=0,tollbar=0,directories=0,status=0,menubar=0,scrollbars=1,top="+sh+",left="+sw);
	newwin2.resizeTo(amplada,alsada);
	newwin2.focus();
}