/*	refreshes the preview panel
Created by 	[ADRIAN CORCORAN]
Website		[http://www.attikdesigns.ie]
*/
function insertMyLink(insertThis, insertIntoThis) {
	//	build this code and then display
	var myLink	= document.getElementById(insertThis);
	var newcode	= document.getElementById(insertIntoThis).value + document.getElementById(insertThis).value;
	
	document.getElementById(insertIntoThis).innerHtml = newcode;
	
//	document.getElementById(updateThis).innerHTML = myCode;
}
//-->

