function openWindow() {
	termswindow = window.open('how-to-take-a-screenshot.php', 'sswindow','screenX=400,screenY=200,location=no,directories=no,statusbar=no,toolbar=no,menubar=no,width=550,height=520,resizable=yes,scrollbars=yes');
	termswindow.focus()
}

function openComment() {
	termswindow = window.open('seo-sem-articles-comments.php', 'acwindow','screenX=400,screenY=200,location=no,directories=no,statusbar=no,toolbar=no,menubar=no,width=550,height=520,resizable=yes,scrollbars=yes');
	termswindow.focus()
}

/***********************************************
* Textarea Maxlength script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

function ismaxlength(obj){
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
if (obj.getAttribute && obj.value.length>mlength)
obj.value=obj.value.substring(0,mlength)
}
