function changeLocation( location ) {
	window.location	= location;
}

function showWindow( page, title, width, height ) {
	window.open( page, title, "width=" + width + ",height=" + height );
}
