﻿function openWindow(sUrl,sTitle,iWidth,iHeight,iY,iX)
{
    window.open(sUrl,sTitle,"resizable=1,width=" + iWidth + ",height=" + iHeight + ",left=" + iX + ",top=" + iY);
}

function isAlive()
{
    alert('alive');
}

