//Display AJAI Loading Image
function displayloader(thediv){
	thediv.innerHTML="<img src=p/loading.gif />";
}

//Set pre font size element
function prefont(thesize){
	pres=document.getElementsByTagName("pre");
	pres[0].style.fontSize=thesize+"px";
}

//Image Regex
function wwximageregex(thestring){
	stringer=thestring.replace(/\{\{wwximage=([^}\"\']+)\}\}/gi, "\n<img src=\"$1\" />\n");
	return stringer;
}
function wwxlinkregex(thestring) {
	stringer=thestring.replace(/\{\{wwxlink=([^}\"\']+)\}\}/gi, "<a href=\"$1\" target=\"_blank\">$1</a>");
	return stringer;
}
function wwxyoutuberegex(thestring){
	stringer=thestring.replace(/\{\{wwxyoutube=([^}\"\']+)\}\}/gi, '\n<div style="text-align:center;color:#cecece;cursor:hand;border:1px solid #353535; background:#000000; padding:2px; width:480px;" onclick="if(this.innerHTML.indexOf(\'Hide\')!=-1){this.innerHTML=\'[Show Video]\'} else {this.innerHTML=\'<object><embed src=http://www.youtube.com/v/$1&color1=0x000000&color2=252525&fs=1 allowfullscreen=true width=480 height=350></embed></object><br/>[Hide Video]\'}"><object><embed src="http://www.youtube.com/v/$1&color1=0x000000&color2=252525&fs=1" allowfullscreen="true" width="480" height="350"></embed></object><br/>[Hide Video]</div>\n');
	return stringer;
}
