/*
* function setimg() - Sets top and left image 
* 
* @param boolean parentflag
* @param string topimgsrc
* @param string leftimgsrc
* 
*
*/

function setimg()
{
	if(arguments.length<2) return false;
	if(arguments[0] == true )
	{
		obj=parent.document;
	}
	else
	{
		obj=document;
	} 
	
	if(arguments[1]) 
	{
		topimg=obj.getElementById("topimg");
		if( topimg != null ) topimg.src=arguments[1];
	}
	
	if(arguments[2]) 
	{
		rightimg=obj.getElementById("rightimg");
		if(rightimg != null) rightimg.src=arguments[2];
	}
	return true;
}
