
function P(url,h,w) 
{ 
	var p = "height=" + h + ",width=" + w + ",scrollbars=yes";
	window.open(url,"",p);
}
		
function loadImage(name, img) 
{
	if (document.images) {
		document.images[name].src = img.src;
	}
}

function loadInput(ctl, img) 
{
	ctl.src = img.src;
	
	//ctl.attributes("src") = img.src;
}

function RTrim(str)
{
	var whitespace = new String(" \t\n\r");
	var s = new String(str);
	if (whitespace.indexOf(s.charAt(s.length-1)) != -1) 
	{
		var i = s.length - 1;
		while (i >= 0 && whitespace.indexOf(s.charAt(i)) != -1)
			i--;
			s = s.substring(0, i+1);
	}
	return s;
}			

function OpenWindow(url)
{
	testwindow = window.open (url, "mywindow","location=0,status=0,scrollbars=0,width=550,height=400,toolbar=0,directories=0,menubar=0,resizable=1");
}

function OpenPopUp(url, windowName, height)
{
	testwindow = window.open (url, windowName,"top=50,left=50,location=0,status=0,scrollbars=1,width=366,height=" + height + ",toolbar=0,directories=0,menubar=0,resizable=0");
}



	
	