function newWindow(Win,FileName,H,W,Title,rS,tB,mB,sB) {
	//set options of the window
	if(rS==null)rS=1;if(tB==null)tB=0;if(mB==null)mB=0;if(sB==null)sB=1;
	//check if window has been opened before
	if (Win && !Win.closed)Win.close();
	//open the window and give it focus
  if (!Win || Win.closed){
	Win = window.open(FileName,Title,'resizable='+rS+',toolbar='+tB+',menubar='+mB+',scrollbars='+sB+',width='+W+',height='+H);
	Win.focus();
  }
}
function closeWindow(Win) {
  if (Win && !Win.closed){
    Win.close()
  }
}

var linkWin
var LogoLinks= ["http://www.ibm.com",
								"http://www.ti.com",
								"http://www.maxtor.com",
								"http://www.spyderco.com",
								"http://www.sun.com",
								"http://www.johndeere.com",
								"http://www.lockheedmartin.com",
								"http://www.boeing.com",
								"http://www.hp.com",
								"http://www.lucent.com",
								"http://www.medtronic.com",
								"http://www.storagetek.com",
								"http://www.cyrix.com",
								"http://www.seagate.com"];
function SS_LinkSlide(){
newWindow(linkWin,LogoLinks[LogoSlides.currImageOn],500,660,"SlideLink",1,1,1,1);
}
SlideShow.prototype.LinkSlide=SS_LinkSlide;