// JavaScript Document
function doChange(cptn, newimge) {
		if(document.all) { var it = document.all("caption"); }
		else { var it = document.getElementById("caption"); }
		document.getElementById("caption").innerHTML = cptn
		document.linkpic.src=newimge;
}
	
function popup(url, name, width, height)
{
settings=
"toolbar=yes,location=yes,directories=yes,"+
"status=no,menubar=no,scrollbars=yes,"+
"resizable=yes,width="+width+",height="+height;

MyNewWindow=window.open("http://"+url,name,settings);
}


function mkmail(user, domain, subj, disp, image, w, h)
{
  addr = user + '@' + domain;
  if (subj) {
  addr = addr + '?SUBJECT=' + subj;
  }
  if (image) {
  document.write('<A HREF=mailto:' + addr + '>' + '<img src="' + image + '" width="' + w + '" height="' + h 
+ '" border="0"><\/A>');
  }else {
  document.write('<A HREF=mailto:' + addr + '>' + disp + '<\/A>');
 }
}
