/*
 * Reloads the current page in top Frame if the framset is greater than 0
 */
function frameCheckReload(){
	if ( top.frames.length > 0 ) {
		top.location.href = document.URL;
	}
}

frameCheckReload();