<!--
if (document.images) {
arImgSrc = new Array (
"")
arImgList = new Array ();
for (counter in arImgSrc) {
   arImgList[counter] = new Image();
   arImgList[counter].src = arImgSrc[counter];
   }
};
function rollOver(imgName,isOver,original) {
if (!document.images) {return};
if (original != null) {
otherImg = document.images[original];
if (isOver) {otherImg.src = "images/template/" + original + "1.gif"}
       else {otherImg.src = "images/template/" + original + "2.gif"};
}
whichImg = document.images[imgName];
if (isOver) {whichImg.src = "images/template/" + imgName + "2.gif"}
       else {whichImg.src = "images/template/" + imgName + "1.gif"};
}
function openpopup(popurl){
var winpops=window.open(popurl,"","width=400,height=450,scrollbars")
}
function open_window_size(url,size){
		mywin = window.open(url,"win",size);
	}

//-->


