/* author: Flying Horse Cracking Force */
/* Creation date: 08.05.2005 */
function makeitBig(jsTarget, jsWidth, jsHeight)
{
        if (jsWidth == null)
        {
                jsWidth = 610;
        }
        if (jsHeight == null)
        {
                jsHeight = 370;
        }
        window.open(jsTarget,"_blank","width=" + jsWidth + ",height=" + jsHeight + ",toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no");
}
function makeitBig1(jsTarget, jsWidth, jsHeight)
{
        if (jsWidth == null)
        {
                jsWidth = 610;
        }
        if (jsHeight == null)
        {
                jsHeight = 370;
        }
        window.open(jsTarget,"_blank","width=" + jsWidth + ",height=" + jsHeight + ",toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}