function framesetUrl( pageName ) {
	if ( screen.width <= 800 || screen.height <= 600 ) {
		window.open( pageName, "mainWindow", "width=780,height=542,top=5,left=5" );
	} else {
		location.href = pageName;
	}
}