function getDateTime()
{
	var now = new Date();
	var e = '0' + now.getHours();
	if (e.length > 2) e = e.substring(1);
	d = e + ':';
	e = '0' + now.getMinutes();
	if (e.length > 2) e = e.substring(1);
	d += e + ' ';
	e = '0' + now.getDate();
	if (e.length > 2) e = e.substring(1);
	d += e + '/';
	e = '0' + (now.getMonth() + 1);
	if (e.length > 2) e = e.substring(1);
	d += e + '/' + now	.getFullYear();
	
	return d;
}

function OpenWindow(winleft, wintop, winwidth, winheight, name, href) 
{
window.open( href, name, 'top=' + wintop + ',left=' + winleft + ',width=' + winwidth + ',height=' + winheight + ',status=no,toolbar=no,menubar=no,scrollbars=no,esizable=no');
}

function OpenWindow(winleft, wintop, winwidth, winheight, name, href) 
{
window.open( href, name, 'top=' + wintop + ',left=' + winleft + ',width=' + winwidth + ',height=' + winheight + ',status=no,toolbar=no,menubar=no,scrollbars=no,esizable=no');
}

function OpenWindow2(winleft, wintop, winwidth, winheight, name, href) 
{
window.open( href, name, 'top=' + wintop + ',left=' + winleft + ',width=' + winwidth + ',height=' + winheight + ',status=no,toolbar=no,menubar=no,scrollbars=yes,esizable=no');
}