function popup() {
	window.open(this.href, '_blank', 'toolbar=0,scrollbars=0,location=0,left=500,top=50,statusbar=0,menubar=0,resizable=0,width=310,height=436');
	return false;
}

function popupBig() {
	window.open(this.href, '_blank', 'toolbar=0,scrollbars=1,location=0,left=500,top=50,statusbar=0,menubar=0,resizable=1,width=355,height=333');
	return false;
}

function popupRealyBig(){
	window.open(this.href, '_blank');
	return false;
}

function screenShotPopup() {
	window.open(this.href, '_blank', 'toolbar=0,scrollbars=0,location=0,left=500,top=50,statusbar=0,menubar=0,resizable=0,width=750,height=450');
	return false;
}



function setPopups(){ 
	for (i= document.links.length; i-->0;)
	    if (document.links[i].className == 'popup') {
	      document.links[i].onclick= popup;
		} else if (document.links[i].className == 'screenShotPopup') {
		  document.links[i].onclick= screenShotPopup;
		} else if (document.links[i].className == 'popupBig') {
			document.links[i].onclick= popupBig;
		} else if (document.links[i].className == 'popupRealyBig') {
			document.links[i].onclick= popupRealyBig;
		} 
}

