function sh (id) { 
whichpost = document.getElementById(id); 
if (whichpost.className=="show") { 
whichpost.className="hide"; 
} 
else { 
if (whichpost.className=="hide") { 
whichpost.className="show"; 
} 
} 
}

 var hasChanged = 0;
 var hostName = 'blogspot.com';
function setCookie (name, value, expires) {
 document.cookie = name + '=' + escape(value) + '; expires=' + expires.toGMTString() + '; domain=' + hostName + '; path=/';
 }
function getCookie (name) {
 var key = name + '=';
 var c = document.cookie;
 var i = c.indexOf(key);
 if (i < 0) return '';
 var j = c.indexOf(';', i + key.length);
 if (j < 0) j = c.length;
 return unescape(c.substring(i + key.length, j));
 }
function rememberMe (f) {
 var now = new Date();
 now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);
 setCookie('author', f.anonName.value, now);
 setCookie('site', f.anonURL.value, now);
 }
function setFormValues (f) {
 f.anonName.value = getCookie("author");
 f.anonURL.value = getCookie("site");
 }
function doLoaded () {
 if (!document.frmComment) return;
 setFormValues(document.frmComment);
 if (document.frmComment.anonName.value)
 document.frmComment.rememberInfo.checked = 1;
 }
 onload = doLoaded;
 
function escapeQuotes(text) {
text=text.replace(/'/g,"\\'");
text=text.replace(/\n/g,"\\n");
return text;
}
function insertTags(tagOpen, tagClose, sampleText) {
 var txtarea = document.cFrm.postBody;
// IE
if(document.selection) {
var theSelection = document.selection.createRange().text;
if(!theSelection) { theSelection=sampleText;}
txtarea.focus();
if(theSelection.charAt(theSelection.length - 1) == " "){
theSelection = theSelection.substring(0, theSelection.length - 1);
document.selection.createRange().text = tagOpen + theSelection + tagClose + " ";
} else {
document.selection.createRange().text = tagOpen + theSelection + tagClose;
}
// Mozilla
} else if(txtarea.selectionStart || txtarea.selectionStart == '0') {
 var startPos = txtarea.selectionStart;
var endPos = txtarea.selectionEnd;
var myText = (txtarea.value).substring(startPos, endPos);
if(!myText) { myText=sampleText;}
if(myText.charAt(myText.length - 1) == " "){ // exclude ending space char, if any
subst = tagOpen + myText.substring(0, (myText.length - 1)) + tagClose + " "; 
} else {
subst = tagOpen + myText + tagClose; 
}
txtarea.value = txtarea.value.substring(0, startPos) + subst + txtarea.value.substring(endPos, txtarea.value.length);
txtarea.focus();
var cPos=startPos+(tagOpen.length+myText.length+tagClose.length);
txtarea.selectionStart=cPos;
txtarea.selectionEnd=cPos;
// All others
} else {
tagOpen=tagOpen.replace(/\n/g,"");
tagClose=tagClose.replace(/\n/g,"");
document.infoform.infobox.value=tagOpen+sampleText+tagClose;
txtarea.focus();
}
if (txtarea.createTextRange) txtarea.caretPos = document.selection.createRange().duplicate();
}
 //Preview
function PreviewpostBody(){
if (cFrm.postBody.value=='') return;
var preview=window.open('','Preview','width=500,height=200');preview.document.open();
var text=cFrm.postBody.value;while(text.indexOf("\n") > -1)
text=text.replace("\n","<br/>");
preview.document.write('<html><style>*{font-size:11px;font-family:Verdana,Arial,Sans-Serif}<\/style><bo'+'dy>'+text+'<\/body><\/html>');
preview.document.close();
}
