function InfoWindow(page, width, height)
{
    NewWindow = window.open(page, "InfoWindow", "width="+width+",height="+height+",scrollbars,dependent=yes,resizable=yes");
    NewWindow.focus();
}

function ConfirmDialog(url,text)
{
    Check = confirm(text);
    if(Check == true){location.href = url};
}
