jQuery(document).ready(function(){  
jQuery(".newTwitter").click(function (event){
	var url = jQuery(this).attr("href");
	var windowName = "popUp";
	var windowWidth = 550;
	var windowHeight = 250;
	var windowLeft = parseInt((screen.availWidth/2) - (windowWidth/2));
	var windowTop = parseInt((screen.availHeight/2) - (windowHeight/2));
	var windowSize = "width=" + windowWidth + ",height=" + windowHeight + ",left=" + windowLeft + ",top=" + windowTop + "screenX=" + windowLeft + ",screenY=" + windowTop;
window.open(url, windowName, windowSize);
event.preventDefault();
});
jQuery(".newFacebook").click(function (event){
	var url = jQuery(this).attr("href");
	var windowName = "popUp";
	var windowWidth = 550;
	var windowHeight = 375;
	var windowLeft = parseInt((screen.availWidth/2) - (windowWidth/2));
	var windowTop = parseInt((screen.availHeight/2) - (windowHeight/2));
	var windowSize = "width=" + windowWidth + ",height=" + windowHeight + ",left=" + windowLeft + ",top=" + windowTop + "screenX=" + windowLeft + ",screenY=" + windowTop;
window.open(url, windowName, windowSize);
event.preventDefault();
});
});


