function chg2frames( url1, frame1, url2, frame2 )
{	
	parent.frames[ frame1 ].location.href = url1; 
	parent.frames[ frame2 ].location.href = url2; 
}

function openWindow( theURL, winName, features )
{
	window.open( theURL, winName, features );
}
