function openWindow(url, height, width, resize, scroll) {
  popupWin = window.open(url,'page','height='+height+',width='+width+',resizable='+resize+',scrollbars='+scroll+'')
}


var ckTemp = document.cookie;

function setCookie(name, value) {
 if (value != null && value != "")
  document.cookie=name + "=" + escape(value) + ";";
 ckTemp = document.cookie;
 }

function getCookie(name) {
 var index = ckTemp.indexOf(name + "=");
 if(index == -1) return null;
  index = ckTemp.indexOf("=", index) + 1;
 var endstr = ckTemp.indexOf(";", index);
 if (endstr == -1) endstr = ckTemp.length;
 return unescape(ckTemp.substring(index, endstr));
 }


function adClick(ad, site) {
window.open(ad);
window.location = site;
}

function conf()
{
  if( confirm( 'Warning you are about to delete your account and all your saved work. Are you sure you want to proceed?' ) ) return true
  else return false;
}





