var timerID = 0;

function timealert()
{
	var answer = window.showModalDialog('../common/modalWindow/timeout.aspx', "", "dialogWidth:200px; dialogHeight:150px; center:yes; status:no; help:no");
}

function Timer()
{
	timerID = setTimeout("timealert()", 6600000);
}


