﻿
// diegodsp
function openPopup(_url,_winName,_width,_height,_scroll,_resize) {
	// show popup on middle of screen
	_y = (screen.height - _height) / 2;
	_x = (screen.width - _width) / 2;
	var win = window.open(_url,_winName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+_scroll+',resizable='+_resize+',copyhistory=no,top='+_y+',left='+_x+',screenY='+_y+',screenX='+_x+',width='+_width+',height='+_height);
	win.focus();
	return win;
}


// diegodsp
function closeSys() {
    self.close();
}

function extendSession() {
    $.post('/www2/Refresh.aspx');
}

jQuery(function($) {
    setInterval(extendSession,60000);   
});