top.location.href = 'page.htm';
To target the current page or frame you can use  in HTML. In Javascript you use:
self.location.href = 'page.htm';
To target the parent frame you can use  in HTML. In Javascript you use:
parent.location.href = 'page.htm';
To target a specific frame within a frameset you can use  in HTML. In Javascript you use:
top.frames['thatframe'].location.href = 'page.htm';
To target a specific iframe within the current page you can use  in HTML. In Javascript you use:
self.frames['thatframe'].location.href = 'page.htm'; 
 
								 
								 
															











