  /********************************/
  /* Open Quicktime Window Script */
  /*    Written by Shawn Storc    */
  /*     shawn@poolrider.com      */
  /*        December 2002         */
  /********************************/
	// pardon my function
	function openQTWin(imgSRC) 
	{
	// open document passing movie location and setting window variables
	QTWin=window.open('','jav','width=320,height=260,resizable=no');
	// write window code - window title, background color, margins and opening tag for movie
	QTWin.document.write("<html><head><title>Poolrider Video</title></head><body BGCOLOR='#000000' leftmargin='0' topmargin='0' rightmargin='0'><embed src='");
	// movie location on server, passed from link
	QTWin.document.write(imgSRC); 
	// movie size and closing tags
	QTWin.document.write("'width='320' height='260' bgcolor='#000000'></embed></body></html>");
	// fat lady sings
	QTWin.document.close();
	}