function changeFrameUrl( targetFrameID, targetUrl )
{
	if( document.getElementById())
	{
		document.getElementById( targetFrameID ).src = targetUrl;
	}
}
