// JavaScript Document


/**************************************************************************************/

function ShowItemTrigger (id)
{
		
    var item = document.getElementById(id);

    if ( item != null )
	{	
	    if(item.style.display=='none' || item.style.height=='0px')
		{
	       item.style.display = 'block';
		 item.style.height = 'auto';
		 }
	    else
	       item.style.display='none';
	}

}

/***********************************************/

function changeObjSrc ( obj, src )
{
	obj.src = src;	
		
}

/**************************************************************************************/

function ShowSpecTrigger (id)
{	      
    ShowItemTrigger('spec_'+id);
    ShowItemTrigger('spec_items_'+id);
    
}

/******************************************************/
	
function openNewWindow (href)
{
	window.open(href, '', 'width=800, height=600, scrollbars=1, resizable=1, location=0');
	return false;
}
