function openPopup(theURL) { //v2.0
	var winName="";
	var features="scrollbars=yes,width=650,height=300";
	window.open(theURL,winName,features);
}
function openPopupImg(theURLImg) { //v2.0
	var winNameImg="";
	var featuresImg="scrollbars=yes,width=720,height=600";
	window.open(theURLImg,winNameImg,featuresImg);
}
