function form_jump(targ,selObj,restore){
 eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
 if (restore) selObj.selectedIndex=0;
}

function smilie(emote) {
 document.reply.comments.value += emote;
 document.reply.comments.focus();
}


function IPopupFunc(href,width,height) {
				try {
				        if (!width) {width = 800;}
				        if (!height) {height = 600;}
					var imageEID = document.getElementById('iPopupEID');
					if (!imageEID) {throw new Error('iPopup ID.');}
					var imageEIDContainer = document.getElementById('iPopupContainerEID');
					if (!imageEIDContainer) {throw new Error('iPopupContainer id');}
					imageEIDContainer.style.visibility = 'inherit';
					
					imageEID.src = href;
					imageEID.style.marginLeft = (-1 * (width >> 1)) + 'px';
					imageEID.style.marginTop = (-1 * (height >> 1)) + 'px';
					imageEID.style.width = width + 'px';
					imageEID.style.height = height + 'px';
				} catch (err) {
					alert('Error!' + err );
					return;
				}
}