// JavaScript Document
function outlink(obj){
	obj.target="_blank";
}

function imgPopup(path,width,height){
	if (width){ tWidth=",width="+(width+20);} else { tWidth=",width=820";}
	if (height) { tHeight=",height="+(height+20);} else { tHeight="";}
	window.open(path,"popup","location=no,menubar=no,scrollbars=yes,status=no,resizable=yes"+tWidth+tHeight);
	return false;
}

function imgPop(obj){
	pImage = new Image;
	pImage.src = obj.href;
	pImage.onload = function(){
		width = pImage.width+20; height = pImage.height+20;
		window.open(pImage.src,"popup","location=no,menubar=no,scrollbars=yes,status=no,resizable=yes,width="+width+",height="+height);
	}
	return false;
}
