// JavaScript Document


// Page Switching in Iframes

function newPage(p1,p2) 
{
	(top.window.frames['content'].location=p1);
	(top.window.frames['title'].location=p2);
}
