﻿// JScript File - Open Tutorial Flash page
// Last Change: 27.07.09
function openFlash(path)
{
    // Getting language code by "path" and using it in the full path back into "path" which is used in the window.open
    path = 'http://www.poolsharks.com/LobbyDynamicContent/Tutorial/Tutorial' + path + '.html';
    window.open(path,'newWin','width=700,height=430,left=120,top=140,toolbar=no,location=no,scrollbars=no,status=no,resizable=no,fullscreen=no');
}


