
function openWindow(url, name, width, height) {

  popupWin = window.open(url, '', ',width=' + width + ',height=' + height +  ',status,resizable,left=25,right=25')
  popupWin.moveto(10,10);
  popupWin.focus();
	

}

