
	function showFullscreen(filename,width,height) {
	
		var myNewWindow = window.open ('', '', 'width=' + (width) + ',height=' + (height) + ',toolbars=no');
		myNewWindow.document.write ('<html><head><title>Unisto</title></head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>');
		
		myNewWindow.document.write ('<img src="../files/vignettes/fullscreen/' + filename + '" />');
		myNewWindow.document.write ('</body></html>');
		
	
	}

