jQuery(document).ready(function() {
	jQuery("body").find("a").each(function() {
		if(jQuery(this).attr('class') == 'popup') {
                	jQuery(this).click(function() {
                        	var url = jQuery(this).attr('href');
				var width = jQuery(this).attr('width');
				var height = jQuery(this).attr('height');
				var controls = 'width='+width+',height='+height+',menubar=yes,location=yes,resizable=no,scrollbars=yes,status=yes';
                        	var thewindow = window.open(url, 'windowname', controls);
				thewindow.focus();
				//jQuery(this).attr('width','400');
				//jQuery(this).attr('height','470');
				return false;
                        });
                }
        });
});

