//-------------------------------------------
function ShowPicture(img,title) {

  pic = window.open('','Picture','width=600,height=500');

  //pic.document.writeln('<HTML>');
  pic.document.writeln(' <HEAD>');
  pic.document.writeln('  <TITLE>'+title+'<\/TITLE>');
  pic.document.writeln(' <\/HEAD>');
  pic.document.writeln(' <BODY BACKGROUND="http://www.pitt.edu/~lincs/images/bgl5.jpg" TEXT="#004000" BGCOLOR="#000000" LINK="#5000D0" VLINK="#5000D0" ALINK="#5000D0">')
  pic.document.writeln('  <CENTER>');
  pic.document.writeln('   <IMG SRC="' + img +'" BORDER="1">');
  pic.document.writeln('   <BR><BR>');
  pic.document.writeln('   <A HREF="#" onClick="self.close();return false;"><B>Close</B></A>');
  pic.document.writeln('  <\/CENTER>');
  pic.document.writeln(' <\/BODY>');
  //pic.document.writeln('<\/HTML>');
}

//-------------------------------------------
function ShowMap(img,title) {

  pic = window.open('','Picture','width=600,height=500,scrollbars=yes,resizable=yes');

  //pic.document.writeln('<HTML>');
  pic.document.writeln(' <HEAD>');
  pic.document.writeln('  <TITLE>'+title+'<\/TITLE>');
  pic.document.writeln(' <\/HEAD>');
  pic.document.writeln(' <BODY BACKGROUND="http://www.pitt.edu/~lincs/images/bgl5.jpg" TEXT="#004000" BGCOLOR="#000000" LINK="#5000D0" VLINK="#5000D0" ALINK="#5000D0">')
  pic.document.writeln('  <CENTER>');
  pic.document.writeln('   <IMG SRC="' + img +'" BORDER="1">');
  pic.document.writeln('   <BR><BR>');
  pic.document.writeln('   <A HREF="#" onClick="self.close();return false;"><B>Close</B></A>');
  pic.document.writeln('  <\/CENTER>');
  pic.document.writeln(' <\/BODY>');
  //pic.document.writeln('<\/HTML>');
}

//-------------------------------------------
function ShowVideo() {

  vid = window.open('samplev.htm','VideoSample','width=400,height=400,scrollbars=no,resizable=no');

}

//-------------------------------------------
function ShowGiftForm() {

  gift = window.open('http://www.alumniconnections.com/olc/pub/UPT/online_giving/gift.html','Gift');

  //specify that LINCS is the receiver
  //gift.document.annual.other.checked=true;
  //gift.document.annual.otherdonation.value="Buy-A-Brick Campaign";

}