// ResumeZapper Common Scripts

function popUp(url) 
{
	sealWin=window.open(url,"RZwin",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
	self.name = "mainWin";
}

function FindIt() 
{
  txt = document.form.res.value;
  pat = /"/g;
  txt2 = txt.replace(pat, "'");
  document.form.res.value = txt2;

  txt = document.form.cover.value;
  pat = /"/g;
  txt2 = txt.replace(pat, "'");
  document.form.cover.value = txt2;

  txt = document.form.other.value;
  pat = /"/g;
  txt2 = txt.replace(pat, "'");
  document.form.other.value = txt2;
}