function qtvrWindow(qtvrName, language) {
	var newWindow = window.open("","newWindow","width=520,height=450,left=120,top=50,scrollbars=no,resizable=no,focus");
	newWindow.document.open();
	newWindow.document.write('<html>');
	newWindow.document.write('<head><title>WSB-NLU Virtual Tour</title></head>');
	newWindow.document.write('<link href="css/qtvrWindow_'+language+'.css" rel="stylesheet" type="text/css" />');
	newWindow.document.write('<body onLoad="self.focus()">'); 
	newWindow.document.write('<div id="container">');
	newWindow.document.write('<embed src="qtvr/'+qtvrName+'.mov" width="480" height="320" pluginspage="http://www.apple.com/quicktime/download/"></embed>'); 
	newWindow.document.write('</div>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}