
		
		
		
	/*************************************************************/
	/*** Open up a pop up window *********************************/
	/*** javascript:popIt('URL',width,height,'scrollbar','toolbar','menubar','resize'); ***/
		function popIt(URL,width,height,scrollbar,toolbar,menubar,resize)
		{
			var popped = window.open(URL, "popper", "status=no,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:changeIt('CLICK','CLICK','CLICK'); ***/
		function changeIt(form,field,id)
			{
				var form = 'AddEdit_Article';
				var field = 'Image_Folder';
				var id = '14';
				window.opener.document.AddEdit_Article.Image_Folder.value = '14';
			}
