
function openWindow(address, w, h)
{
	newWin = window.open( ""+address , "IMG0" ,"scrollbars=yes, resizable=yes, width="+w+", height="+h+", top=100, left=50");
}

function GoToPage(location)
{
    document.location  = location;
}

function ConfirmAct(msg, location)
{
    if (confirm(msg))
    {
        document.location  = location;
    }
}

function SubmitForm(f)
{
    f.submit();
}