﻿var animationWindow;
function openAnimation(id, animationPath) {
	animationWindow = window.open(animationPath + '?id=' + id, 'viewAnimationWindow', 'width=640,height=480,directories=0,fullscreen=0,menubar=0,resizable=1,scrollbars=0,toolbar=0,titlebar=0,location=0');
	animationWindow.focus();
	return false;
}

