// JavaScript Document
// ---------------------------------------------------------
//	LOAD UP IFRAME
// ---------------------------------------------------------
function fn_setContent(page,targetFrame)
{
	top.frames[targetFrame].location = page;
}
	
function loadIframe(iframeName, url) 
{
	if ( top.frames[iframeName] ) 
	{
		top.frames[iframeName].location = url;   
		return false;
	} else
	{
		return true;
	}
}

// -->