function popupHeight(percent)
{
return screen.height * percent / 100;
}

function popupWidth(percent)
{
return screen.width * percent /100;
}


