//By: Dexter Zafra www.ex-designz.net

//Handle popup window
function Start(page) {
OpenWin = this.open(page,'CtrlWindow', 'width=650,height=500,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes')
}
function openWindow(url) {
  popupWin = window.open(url,'new_page','width=400,height=400')
}

//Handle textarea comment and URL description character count 
function textCounter(field, countfield, maxlimit) 
  {
     if (field.value.length > maxlimit) 
         field.value = field.value.substring(0, maxlimit);
     else 
         countfield.value = maxlimit - field.value.length;
}
	