var xp_new_window_class = "new-window";
var wWith = screen.width;
var wHeight = screen.height;
var windowName = 'aWindow';
var windowOptions = 'resizable=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes';
var sel ="#new-window a";

jQuery(function(){
	jQuery(sel).bind('click', function(){
		var href = jQuery(this).attr('href');
		newWindowWithURL(href);
		return false;
	});
});

function newWindowWithURL(anHref, disable){
	if (anHref != null && anHref != '' && anHref != '#') {
        var newWindow = window.open(anHref, windowName, windowOptions + ',width=' + wWith + ',height=' + wHeight);
    }
}
