function DoP(action) {
 var rvmsg;
 var cmsg = document.hszek.hsz.value;

 if (action == "url") 
 {
		 var thisURL = prompt("Add meg a beszúrandó link URL-jét! A http:// vagy ftp:// előtagot kötelező tartalmaznia!", "http://");
		 if (thisURL.length>7)
		 {
		 var thisTitle = prompt("Mi a link neve?", "");
		 }
		 var urlcode = " [URL="+thisURL+"]"+thisTitle+"[/URL]";
		 rvmsg = cmsg+urlcode;
		 if (thisURL.length>8 && thisTitle.length>1)
		 {
		 document.hszek.hsz.value=rvmsg;
		 }
		 document.hszek.hsz.focus();
		 return;
 }

 if (action == "img") 
 {
		 var thisImage = prompt("Add meg a beszúrandó kép URL-jét!", "http://");
		 var imagecode = " [IMG]"+thisImage+"[/IMG]";
		 rvmsg = cmsg+imagecode;
		 if (thisImage.length>8)
		 {
		document.hszek.hsz.value=rvmsg;
		 }
		 document.hszek.hsz.focus();
 return;
 }
 
 if(action == "video")
  {
	 var thisVideo = prompt("Addja meg a youtube-os video linkjét:", "");
		 var imagecode = " [flash]"+thisVideo+"[/flash]";
		 rvmsg = cmsg+imagecode;
		 if (thisVideo.length>8)
		 {
		document.hszek.hsz.value=rvmsg;
		 }
		 document.hszek.hsz.focus();
  }
 
}
