
function openWindow(address, w, h, t,l)
{
	myWin = window.open( ""+address , "win"+w+h ,"scrollbars=yes, resizable=yes, width="+w+", height="+h+", top="+t+", left="+l+" ");
}



function popup(what, w, h)
{
	config='toolbar=no,location=no,directories=no,stat us=no,menubar=no,width='+w+',height='+h+''
	config += 'scrollbars=no,resizable=no'
	pop = window.open ("","pop",config)

	pop.document.write('<html><head></head><body style="margin: 0; padding: 0;">');
	pop.document.write('<img src="'+what+'" onclick="javascript:self.close()" />');
	pop.document.write('</body></html>');
	
	//return true;
}

function GoToPage(location)
{
    document.location  = location;
}

function ConfirmAct(msg, location)
{
    if (confirm(msg))
    {
        document.location  = location;
    }
}

function SubmitForm(f)
{
    f.submit();
}



