function opendownload(url)
{
	window.open(url,'','location=no,menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=no,width=250,height=50,top=400,left=300');
}

function openwindow(url)
{
// open url in a new window without location bar, etc

 window.open(url,'','location=no,menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=yes,width=500,height=500,top=100,left=250');
 
}

function openwindow_faq(url)
{
// open url in a new window without location bar, etc

 window.open(url,'','location=no,menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=yes,top=50,left=150');
}

function openwindow_usrgrpservice(url)
{
// open url in a new window without location bar, etc

 window.open(url,'','location=no,menubar=no,status=no,toolbar=no,resizable=no,scrollbars=yes,top=50,left=150');
}

function openwindow_usrgrptask(url)
{
// open url in a new window without location bar, etc

 window.open(url,'','location=no,menubar=no,status=no,toolbar=no,resizable=no,scrollbars=yes,width=350,height=400,top=150,left=150');
 
 //scrollbars=yes,width=350,height=400,top=150,left=600'
}

function openwindow_feedback(url)
{
// open url in a new window without location bar, etc

 window.open(url,'','location=no,menubar=no,status=no,toolbar=no,resizable=no,scrollbars=yes,top=10,left=150,height=600,width=760');
}

function openwindow_clearcache(url)
{
// open url in a new window without location bar, etc

 window.open(url,'','location=no,menubar=no,status=no,toolbar=no,resizable=no,scrollbars=yes,width=350,height=450,top=150,left=150');
 
 //scrollbars=yes,width=350,height=400,top=150,left=600'
}

function timeOutNotice()
{
	alert('Your session has expired. Please login again to re-establish your connection');			
}

function setTimeOutNotice(min)
{
	window.setTimeout(timeOutNotice,(min * 60 * 1000));
}

