// JavaScript Document for Clever Coupons

function cleverWindow(theURL,width,height) { 

	width += 20;
	height+= 50;

	var params = 'scrollbars=auto,resizable=yes,width='+width+',height='+height;

	window.open(theURL,'',params);

} 

function bookmark(url,title){

    var ua = navigator.userAgent.toLowerCase();
    
    if(ua.indexOf('webkit') != -1) {
          alert("Press CTRL-D to bookmark");
          return;
    }

  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  }
  else {
    alert("Press CTRL-D (Firefox) or CTRL-T (Opera) to bookmark");
  }

}

function m(email) { 
	 var domain = 'clevercoupons.com.au';
	 document.location = 'mailto:' + email;
}