jQuery(document).ready(function(){
	
	$(".throwpop").click( function(e) {
		
		e.preventDefault();
		
		var sTarget = e.target;
		
		var w = 800;
		var h = 600;
		var LeftPosition=(screen.width)?(screen.width-w)/2:100;
		var TopPosition=(screen.height)?(screen.height-h)/2:100;
		
		var sSettings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=yes,directories=no,status=yes,menubar=yes,toolbar=yes,resizable=yes';
		
		win=window.open( sTarget, "", sSettings );
		
	});
	
});