function openWindow(strPath){
	//alert(strPath)
  objWinWidth=640;
  objWinHeight=480;
  leftPos = 0
	topPos = 0
	if (screen) {
		leftPos = (screen.width / 2) - 167
		topPos = (screen.height / 2) - 242
	}
  strAttributes="width="+objWinWidth+",height="+objWinHeight+",scrollbars=yes,left="+leftPos+",top="+topPos;
  objWin = window.open(strPath,"blogPopup",strAttributes);
  objWin.focus();
}


