function insertLink(strLinkVal){
	if (strLinkVal!=''){
		strLinkValDisplay = strLinkVal.substring(7,strLinkVal.length)
		//alert(strLinkValDisplay)
		document.forms[0].comment.value = document.forms[0].comment.value + '<a href="' + strLinkVal + '" target="_blank">' + strLinkValDisplay + '</a>';
	}		
}

function openWindow(strPath){
	//alert(strPath)
  objWinWidth=450;
  objWinHeight=200;
  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();
}

function toggleChkBoxVal(){	
	if (document.manageUserAccounts.isAdmin.checked == true) {document.manageUserAccounts.isAdmin.value = 1;}
	else {document.manageUserAccounts.isAdmin.value = 0;}
	//alert(document.manageUserAccounts.isAdmin.value)
}