function popWin(page, width, height) {
	popupWin = window.open('', 'mainwindow', 'scrollbars=no,resizable=yes,toolbar=no,width=' + width + ',height=' + height + ',left=10,top=10,screenX=10,screenY=10');
	popupWin.location=page;                

}