function openNext(URL1,URL2)
{
	parent.caption.location.href = URL1;
	parent.main.location.href = URL2;
}

function openOne(url1,target)
{
	parent.frames[target].location.href = url1;
}	


function openNext2(url1,target1, url2, target2)
{
	parent.frames[target1].location.href = url1;
	parent.frames[target2].location.href = url2;
}
