﻿var popup = function(url, title, width, height) 
{
    mywindow = window.open(url, title, "location=1,status=0,scrollbars=1, width=" + width + ",height=" + height);
    return false;
}


