function changeImage(num,file)
{
	document.images[num-1].src=file;
}

function openWindow(theURL,winName,mySize) {
	var Wo1;
  Wo1=window.open(theURL,winName,mySize,"scrollbars=yes,resizable=yes");
	Wo1.focus();
}

