function doConfirm(message)
{
	return confirm(message);
}

function openPrint(url)
{
        d = new Date();
        win = window.open(url, d.getTime(), 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,height=275,width=550');
        win.print();
}

function openPopup(url)
{
        d = new Date();
        win = window.open(url, d.getTime(), 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,height=350,width=400');
}

