jQuery(function(){
	jQuery('a.popup').each(function(){
		varhref = this.href;
		this.phref = varhref.split("?")[0];
		specArray = varhref.split("?")[1].split("&");
		this.w = specArray[0].split("=")[1];
		this.h = specArray[1].split("=")[1];	
		jQuery(this).click(function(){
			thisWindow = window.open(this.phref, "whtiecpopup", "width=" + this.w + ", height=" + this.h + ", menubar=no, toolbar=no, scrollbars=no");
			thisWindow.focus();
			return false;
		})
	});
})
