/**
Javascript for KampoengTi.com
by Rahmatul hidayat
Author : Cybermind
Maret 2009
*/

/**
Priview Image before Upload
*/
function priviewImage(isi, img){document.getElementById(img).src= document.getElementById(isi).value;}
/**
REGEX for checking Email'
ram 2009
 * @param   object  String Email
 * @return  Filter Format Email
 */
function isEmail(Vemail){
	 pola=/^[\w-\.]+@([\w-\.]+\.)[a-z]{2,6}/i
	var hasil=pola.exec(Vemail);
	return hasil;
}
/*REGEX for Prototype TRIM*/
String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"");}
String.prototype.Rtrim=function(){return this.replace(/\s+$/,"");}
String.prototype.Ltrim=function(){return this.replace(/^\s+/,"");}
/*POT FLAG read Article*/
function flagcountread(json){$.ajax({type: "POST",url:json.u,data:"idarticle=" + json.qid,success: function(feedback){return false;}})}
