
/*
<!-- Idea by:  Nic Wolfe -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
*/

var WindowObjectReference = null;

function popUp(URL) {
	WindowObjectReference = window.open(URL, 'name', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=960,height=800,left = 560,top = 300');
	if (window.focus) {WindowObjectReference.focus();}

	}	


function ConfirmDelete(question,url)
	{
 	var where_to= confirm(question);
 	if (where_to== true)
 		{
	   	window.location=url;
 		}
	}
function WriteSearchResult(ElementId,arg)
	{
	document.getElementById(ElementId).innerHTML+=arg;
	}

function AddText(TextToAdd,Obj) 
	{
	var newtext = TextToAdd;
	
	Obj.value = newtext  + "\n" + Obj.value;
	}
	

