<!--
function open_window(link,w,h,name) {
		var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=no";
		newWin = window.open(link,name?name:'newWin',win);
		newWin.focus();
}
function s_t(text) { window.status = text; return true; }
function h_t() { window.status = ''; }
//-->
function gettimefromstr(str)
{
	myDate=new Date(parseInt(str.substring(0,4)),parseInt(str.substring(5,7))-1,parseInt(str.substring(8,10)),parseInt(str.substring(11,13)),parseInt(str.substring(14,16)),parseInt(str.substring(17,19)));
	return (myDate.getTime());
}

