function doPopup() {
	if (!document.getElementsByTagName) return false;
	var links = document.getElementsByTagName("a");
	for (var i=0; i < links.length; i++) {
		if (links[i].className.match("lWindow")) {
			links[i].onclick = function() {
				window.open(this.href,'window1','width=800, height=600, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links[i].className.match("mWindow")) {
			links[i].onclick = function() {
				window.open(this.href,'window1','width=640, height=480, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links[i].className.match("sWindow")) {
			links[i].onclick = function() {
				window.open(this.href,'window1','width=400, height=300, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links[i].className.match("FullWindow")) {
			links[i].onclick = function() {
				window.open(this.href,'window1','width=1024, height=768, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links[i].className.match("mainWindow")) {
			links[i].onclick = function() {
				window.open(this.href,'window1','width=700, height=600, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links[i].className.match("comparisonWindow")) {
			links[i].onclick = function() {
				window.open(this.href,'window1','width=880, height=620, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
	}
	
	
	
	if (!document.getElementsByTagName) return false;
	var links2 = document.getElementsByTagName("area");
	for (var i=0; i < links2.length; i++) {
		if (links2[i].className.match("lWindow")) {
			links2[i].onclick = function() {
				window.open(this.href,'window1','width=800, height=600, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links2[i].className.match("mWindow")) {
			links2[i].onclick = function() {
				window.open(this.href,'window1','width=640, height=480, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links2[i].className.match("sWindow")) {
			link2s[i].onclick = function() {
				window.open(this.href,'window1','width=400, height=300, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links2[i].className.match("FullWindow")) {
			links2[i].onclick = function() {
				window.open(this.href,'window1','width=1024, height=768, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links2[i].className.match("mainWindow")) {
			links2[i].onclick = function() {
				window.open(this.href,'window1','width=700, height=600, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
		if (links2[i].className.match("comparisonWindow")) {
			links2[i].onclick = function() {
				window.open(this.href,'window1','width=880, height=620, menubar=no, toolbar=no, scrollbars=yes');
				return false;
			}
		}
	}
	
	
	
	
	
}
window.onload = doPopup;
