
		
		
		
	/*************************************************************/
	/*** Open up a pop up window *********************************/
	/*** javascript:popIt('CLICK',CLICK,CLICK); ***/
		function popIt(URL,width,height,scrollbar,toolbar,menubar,resize,name)
		{
			
			if (typeof(name) == 'undefined') name = 'popper';
			var popped = window.open(URL, name, "status=yes,width=" + width + ",height=" + height + ",scrollbars=" + scrollbar + ",toolbar=" + toolbar + ",menubar=" + menubar + ",resizable=" + resize);
		}
		
		
	
	/*************************************************************/
	/*** Will close the pop up window *********************************/
	/*** javascript:closeIt(); ***/
		function closeIt()
			{
				popped = window.open("", "popper", "");
				popped.close();
			}
		
		
	
	/*************************************************************/
	/*** Will close the pop up window and relocate the popper *********************************/
	/*** javascript:closeMe('CLICK'); ***/
		function closeMe(URL)
			{
				window.opener.location=URL;
				window.close();
			}
		
		
	
	/*************************************************************/
	/*** Will close the pop up window and relocate the popper *********************************/
	/*** javascript:closeMe('CLICK'); ***/
		function refreshMe()
			{
				opener.location.reload(true);
				window.close();
			}
		
		
	
	/*************************************************************/
	/*** Will close the pop up window and relocate the popper *********************************/
	/*** javascript:changeIt('CLICK','CLICK','CLICK'); ***/
		function changeIt(form,field,val)
			{
				eval('window.opener.document.' + form + '.' + field + '.value = "' + val + '"');
			}
