function viewQT(movie, width, height, title, description)
{
	var generator=window.open('','name','height=' + (parseInt(height) + 140) + ',width=' + (parseInt(width) + 48));
  	generator.document.write('<html><head><title>Blue Room</title>');
  	generator.document.write('<link rel="stylesheet" href="css/popup.css">');
  	generator.document.write('</head><body>');
	generator.document.write('<table height="100%" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td height="' + (parseInt(height) + 48) + '" width="' + (parseInt(width)) + '" valign="middle" align="center">');
  	generator.document.write('<EMBED SRC="movies/' + movie + '" width="' + width + '" height="' + height + '" SCALE=ASPECT AUTOPLAY=true CONTROLLER=true LOOP=false HREF="movies/' + movie + '" TARGET="myself" PLUGINSPAGE="http://www.apple.com/quicktime/"></EMBED>');
	if(title != null)
	{
		generator.document.write('<h3>' + title + '</h3>');
	}
	if(description != null)
	{
		generator.document.write(description);
	}
	generator.document.write('</td></tr></table>');
  	generator.document.write('</body></html>');
 	generator.document.close();
}