$(document).ready(function(){

	$('.confirm').click(function(){
		if(confirm('Are You Sure?'))
		{
			return true;
		} else {
			return false;
		}
	});

	$('.external').click(function(){
		var newWindow = window.open(this.getAttribute('href'), '_blank');
		if (newWindow)
		{
			if (newWindow.focus)
			{
				newWindow.focus();
				return false;
			}
		} else {
			return true;
		}
	});

});
