heightSMALL = 350;
widthSMALL = 650;
posXS = (screen.width/2 - widthSMALL/2).toString();
posYS = (screen.height/2 - heightSMALL/2).toString();

function openSMALL(URLStr){ 
	var w = window.open(URLStr,"_blank","height=" + heightSMALL + ",width=" + widthSMALL + ",top=" + posYS + ",left=" + posXS + ",screenX=" + posXS + ",screenY=" + posYS + ",menubar=no,resizable=yes,scrollbars=yes");
	  return void(0); 
}

function sendThis(){ 
	openSMALL("/sendto.php?LOC=" + this.location); 
}
function react_toThis(){
	openSMALL("/reactto.php?LOC=" + this.location); 
}