﻿// JScript File
function Content(whichone,target)
{
    var ajax_build = new Ajax.Updater(target,'/ALEXONIT_cms/Common_Processors/Content.aspx?content=' + escape(whichone), 
                                     {   method: 'post'
                                        } 
                                       );
}

function focusInput(obj, text) {
		obj.className='unwatermarked';
		if (obj.value == text) {
			obj.value = '';
		}
}
function blurInput(obj, text) {
		obj.className='watermarked';
		if (obj.value == '') {
			obj.value=text;
		}
}
