﻿jQuery("document").ready(
	function() {
		jQuery("a[class^=popup]").click(
			function() {
				var winFeatures = "directories=yes;menubar=yes;resizable=yes;scrollbars=yes;status=yes;titlebar=yes;titlebar=yes;";
				var className = this.className;
				var reSize = /popup(\d+)x(\d+)/;
				var sizeMatches = reSize.exec(className);

				if (!sizeMatches) {
					window.open(this.href);
				}
				else {

					var width = sizeMatches[1];
					var height = sizeMatches[2];
					window.open(this.href, null, "width=" + width + ";height=" + height + ";" + winFeatures);
				}

				return false;
			}
		);
	}
);
